Snap scrolling with scrollify is great, except when the users want to quickly scroll to the top or bottom of the page.
Then they're forced to scroll through the sections one at a time.
A parameter to only snap once users stop scrolling the mouse wheel will be great.
Is there a way to do this?
<script>
$(window).resize(function () {
var width = $(this).width();
if (width > 767) {
$(function () {
$.scrollify({
section: '.snap-section',
interstitialSection: '.non-scroll-snap',
});
});
} else {
}
});
</script>