0

I'm making this horizontal website but i'm having a problem with scroll:

In Windows it's ok, but in Mac Mavericks there's a scroll acceleration, which makes the page scrolls too fast.

The solution i found is to jump to next session on scroll, is it even possible?

This is my website: http://www.finecolor.com.br/bandainky

Any other solutions?

Artur Haddad
  • 1,429
  • 2
  • 16
  • 33

1 Answers1

0

normally I would advise to use the following snippet to remap vertical scrolling to horizontal:

document.documentElement.onmousewheel = function ()
{
    if (document.body.doScroll)
        document.body.doScroll(event.wheelDelta>0?"left":"right");

    return false;
}

fully hijacking the scroll like the library you use does tends to be bad for UX. Here is a full post on how to do that properly: How to do a horizontal scroll on mouse wheel scroll?

Community
  • 1
  • 1
Sheraff
  • 5,730
  • 3
  • 28
  • 53