An easy-to-use, lightweight jQuery plugin to enable snap scrolling on your website. Simply choose which elements you want to snap to.
You will need to include:
- jQuery library (1.7 minimum)
- The JavaScript file
jquery.snapScroll.js
, or the minified versionjquery.snapScroll.min.js
Optionally:
- The minified JavaScript file
jquery.easing.min.js
for additional easing functions (seeeasing
option)
Include these files just before your closing </body>
tag.
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js" charset="utf-8"></script>
<!-- snapScroll JavaScript file -->
<script src="jquery.snapScroll.min.js" charset="utf-8"></script>
<!-- Additional easing file (optional) -->
<script src="jquery.easing.min.js" charset="utf-8"></script>
All you need to do is add the data-snap-point
attribute to the elements you wish to scroll to. For example,
<body>
<div data-snap-point></div>
<section>
<article data-snap-point></article>
<article data-snap-point>
<p></p>
</article>
<article></article>
<article data-snap-point></article>
</section>
...
It is also possible to scroll to points in a different order than in the markup. Just set the ordered
option to false
and set the data-snap-point
attribute to the point index:
<body>
<div data-snap-point="1"></div>
<section>
<article data-snap-point="4"></article>
<article data-snap-point="2">
<p></p>
</article>
<article></article>
<article data-snap-point="3"></article>
</section>
...
Note: to avoid unexpected results, indices should be zero-indexed and hold consecutive values. Be cautious when using unordered snap points, the user experience may be terrible.
Inside a $(document).ready
function, call the snapScroll
function on a jQuery-wrapped element. To scroll the whole page (the most common case), the only code you need is
$(document).ready(function () {
$(window).snapScroll()
})
Optionally, you can pass custom options to the snapScroll
function.
$(document).ready(function () {
$(window).snapScroll({
arrowKeys: true,
duration: 900,
easing: 'easeInOutCubic',
scrollBar: false,
onLeave: function (currentPoint, targetPoint) {
console.log('Ahhh, where am I going?!')
}
})
})
The snapScroll
function can be called on any element with a scroll height greater than its height (i.e. with a scrollbar).
$(document).ready(function () {
$('#someElement').snapScroll({
duration: 1200
})
})
-
arrowKeys
(defaultfalse
): When set totrue
, keyboard arrow keys can be used to navigate between snap points. If set totrue
for more than one container, all elements will scroll. -
duration
(default600
): The duration in milliseconds of the animation between snap points. -
easing
(default'swing'
): The transition effect of the scroll animation. The easing functions included with jQuery are:swing
linear
If you have included the
jquery.easing.min.js
file (see Including Files), then you can use additional easing functions. -
ordered
(defaulttrue
): Defines if the snap points should be scrolled through in their markup order, or if a separate order has been specified. -
scrollBar
(defaulttrue
): When set tofalse
, the scroll bar of the container element will be hidden.
-
onLeave(currentPoint, nextPoint)
: Called when leaving a snap point i.e. when the animation is starting.currentPoint
: Index of the current snap point.nextPoint
: Index of the target/destination snap point.
From the
onLeave
function, you can return an object of custom options which will override the options you passed snapScroll on initialisation. For example,$(document).ready(function () { $(window).snapScroll({ onLeave: function (currentPoint, nextPoint) { // If scrolling between points 3 and 4. if (currentPoint === 3 && nextPoint === 4) { // Make the animation really slow. return { duration: 4000 } } } }) })
It is also possible to cancel the animation by using
cancel: true
:$(document).ready(function () { $(window).snapScroll({ onLeave: function (currentPoint, nextPoint) { // Cancel if scrolling to point 5. if (nextPoint === 5) { return { cancel: true } } } }) })
-
onArrive(prevPoint, currentPoint)
: Called when arriving at a snap point i.e. when the animation has finished.prevPoint
: Index of the previous snap point.currentPoint
: Index of the new current snap point.
All methods should be called on the SnapScroll object, returned by the call to snapScroll
.
-
scrollPrev()
: Scroll to the previous snap point. -
scrollNext()
: Scroll to the next snap point. -
scrollToPoint(targetPoint, newOptions)
: Scroll to the given snap point.targetPoint
: Index of the target snap point.newOptions
: New options to override current options (optional).
-
currentPoint()
: Gets the index of the nearest snap point. -
enable()
: Enable snap scrolling within the element (called on initialisation). -
disable()
: Disable snap scrolling within the element.
$(document).ready(function () {
var ss = $(window).snapScroll()
ss.scrollToPoint(3, {
duration: 1200,
easing: 'easeOutBounce'
})
ss.disable()
})
Similarly, two variables are exposed via the SnapScroll object.
-
scrolling
(boolean): Flag to indicate the scrolling state. -
snapPoints
(object): Array of the snap points.
$(document).ready(function () {
var ss = $(window).snapScroll()
// Is the element scrolling?
console.log(ss.scrolling)
// Inner HTML of first snap point.
console.log(ss.snapPoints[0].innerHTML)
})
All modern browsers are supported.
-
Chrome: ≥ 26
-
Firefox: ≥ 21
-
Edge: ≥ 14*
-
Opera: ≥ 15
-
Safari: ≥ 6.2
-
Internet Explorer: Not supported
* Edge does not fire the 'wheel' event when scrolling with the 2-finger gesture on a Precision Touchpad. See issue here.
Browser compatibility has been tested using BrowserStack, huge thanks to them for supporting the project!
This project is licensed under the MIT License. See the LICENSE file for details.