Home › Forums › Design › Full Page Scroll › Reply To: Full Page Scroll
May 26, 2015 at 4:29 pm
#202865
Participant
Should there be no animation at all then – instantaneous, like on this page?
I happened to have written a small plugin as well (it uses mousewheel.js) that might be suitable :
http://codepen.io/Shikkediel/pen/GJRbOV?editors=001
This will make it scroll quickly (and add a delay so a single scroll is triggered with multiple mousewheels) :
$(window).on('load', function() {
$(this).impulse({
extent: $(window).height(),
tempo: 150,
method: 'linear',
delay: true
});
});
Had to rewrite it a bit – the animation tempo is as long as the mousewheel is ‘disabled’ here (until the page movement has finished). So setting it to zero (like with the first link) won’t work in this particular case. The minimum would be about 150ms.