I have website with horizontal layout and i what to make mouse wheel scroll it relative to axis x (not y, like usual).
I use jQuery plugins mousewheel
and scrollTo
, but I can't achieve
soft, natural scroll.
You can look at the example on my test site
Asked
Active
Viewed 4,270 times
2

vtambourine
- 2,109
- 3
- 18
- 27
-
1possible duplicate of [How to do a horizontal scroll on mouse wheel scroll ?](http://stackoverflow.com/questions/2346958/how-to-do-a-horizontal-scroll-on-mouse-wheel-scroll) – Nick Craver Jun 12 '10 at 21:12
-
1Unfortunately, it doesn't work in Chrome. – vtambourine Jun 12 '10 at 21:20
1 Answers
5
I answered a question similar to this... we ended up not using jQuery animation because it was choppy. Here is the demo.
Try changing the delta multiplier to change the amount the mousewheel scrolls:
this.scrollLeft -= (delta * 30);