I'm making a parallax website and I would like to make the page scroll smoother with the mousewheel for a better user experience.
The best example I could get was this website: http://www.milwaukeepolicenews.com/#menu=home-page
It would be great if I could get something similar to that into my website, the smooth vertical scrolling and scroll inertia.
I noticed they are using Brandon Aaron's jQuery mousewheel which is very light but I'm just a beginner and cannot make it work by myself.
Also i noticed this in their mpd-parallax.js:
jQuery(window).mousewheel(function(event, delta, deltaX, deltaY){
if(delta < 0) page.scrollTop(page.scrollTop() + 65);
else if(delta > 0) page.scrollTop(page.scrollTop() - 65);
return false;
})
Thank you!
EDIT
I'm almost there. Take a look at this fiddle: http://jsfiddle.net/gmelcul/cZuym/ It only needs adding an easing method to scroll just like the Milwaukee Police website.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…