jquery - How can I make the horizontal scrolling smooth when using a Mac trackpad? -
i've made website horizontal scroll, there problem acceleration of mac trackpad makes not smooth.
the website can viewed here: www.runeneesgaard.dk
this code use make page go right when user scroll down on or mousewheel:
$(function() { $("body").mousewheel(function(event, delta) { this.scrollleft -= (delta * 30); event.preventdefault(); });
does have idea how can make smooth , work acceleration of mac trackpad? or maybe "ignore" acceleration?
i hope makes sense! :)
thanks!
Comments
Post a Comment