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

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -