Skip to content

Instantly share code, notes, and snippets.

@cmpolis
cmpolis / gist:5954658
Created July 9, 2013 04:16
ScrollIt.js step 1
<script src="jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="scrollIt.js" type="text/javascript"></script>
@cmpolis
cmpolis / gist:5954639
Last active December 19, 2015 12:28
scrollIt.js Options
$.scrollIt({
upKey: 38, // key code to navigate to the next section
downKey: 40, // key code to navigate to the previous section
easing: 'linear', // the easing function for animation
scrollTime: 600, // how long (in ms) the animation takes
activeClass: 'active', // class given to the active nav element
onPageChange: null, // function(pageIndex) that is called when page is changed
topOffset: 0 // offste (in px) for fixed top navigation
});