Skip to content
This repository has been archived by the owner on Apr 12, 2018. It is now read-only.

bolmaster2/scroller

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Scroller

A minimalistic javascript scrollbar. Check out the demo page here

HTML

<div id="outer-container">
		<div id="inner-container">
			(My scroll content goes here...)
		</div>
	</div>

Javascript

<script>
		// Create the object and send in the scroll element
		var scroller = new Scroller(document.getElementById("inner-container"));
	</script>