Power steering for your scroll wheel
A jQuery plugin that assists scrolling and smoothly snaps to sections.
Fully configurable and optimised for touch.
https://github.com/lukehaas/Scrollify
Scroll for more « More ProjectsScrollify requires jQuery 1.7+.
<! doctype html>
<html>
<head>
<script>
$(function() {
$.scrollify({
section : ".example-classname",
});
});
</script>
</head>
<body>
<div class="example-classname"></div>
<div class="example-classname"></div>
</body>
</html>
$.scrollify({
section : "section",
sectionName : "section-name",
interstitialSection : "",
easing: "easeOutExpo",
scrollSpeed: 1100,
offset : 0,
scrollbars: true,
standardScrollElements: "",
setHeights: true,
overflowScroll: true,
updateHash: true,
touchScroll:true,
before:function() {},
after:function() {},
afterResize:function() {},
afterRender:function() {}
});
$.scrollify.move("#name");
The move method can be used to scroll to a particular section. This can take the index of the section, or the name of the section preceded by a hash.
$.scrollify.instantMove("#name");
The instantMove method can be used to scroll to a particular section without animation. It can be parsed the index of the section, or the name of the section preceded by a hash.
$.scrollify.next();
The next method can be used to scroll to a panel that immediately follows the current panel.
$.scrollify.previous();
The previous method can be used to scroll to a panel that immediately precedes the current panel.
$.scrollify.instantNext();
The instantNext method can be used to scroll to a panel that immediately follows the current panel, without animation.
$.scrollify.instantPrevious();
The instantPrevious method can be used to scroll to a panel that immediately precedes the current panel.
$.scrollify.destroy();
The destroy method removes all Scrollify events and removes set heights from the panels.
$.scrollify.update();
The update method recalculates the heights and positions of the panels.
$.scrollify.current();
The current method returns the current section as a jQuery object.
$.scrollify.disable();
The disable method turns off the scroll snap behaviour so that the page scroll like normal.
$.scrollify.enable();
The enable method resumes the scroll snap behaviour after the disable method has been used.
$.scrollify.isDisabled();
The isDisabled method returns true if Scrollify is currently disabled, otherwise false.
$.scrollify.setOptions()
The setOptions method can be used to change any of the initialisation options. Just parse it an options object.