Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Just now, accidentally, i stumble upon http://www.benekdesign.com/ . Here on mouse wheel scroll it performs horizontal scroll. Truly speaking i didn't like this feature. It was a bit irritating. But still, Please tell me how to achieve the same.

Edited

Okay, firebug says he is using

/* Horizontal Tiny Scrolling - a smooth scrolling script for horizontal websites 2(the brother of the vertical "Tiny Scrolling") 3by Marco Rosella - http://www.centralscrutinizer.it/en/design/js-php/horizontal-tiny-scrolling 4 v0.6 - February 14, 2007

share|improve this question
It doesn't work in Opera 10.10. – frbry Feb 27 '10 at 10:41

3 Answers

up vote 12 down vote accepted

It looks like he's just mapping the mouse wheel to the horizontal bar in the onmousewheel event. In IE, this is really easy by just using the doScroll() method:

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

    return false;
}

This will scroll the horizontal bar by the amount the vertical bar would normally scroll by. Other browsers don't support the doScroll() method, so you have to live with scrolling by an abitrary amount instead:

EDIT Just learned that Firefox doesn't support onmousewheel as of 3.x, updated code below.

var mouseWheelEvt = function (e)
{
    var event = e || window.event;
    if (document.body.doScroll)
        document.body.doScroll(event.wheelDelta>0?"left":"right");
    else if ((event.wheelDelta || event.detail) > 0)
        document.body.scrollLeft -= 10;
    else
        document.body.scrollLeft += 10;

    return false;
}
if ("onmousewheel" in document.body)
    document.body.onmousewheel = mouseWheelEvt;
else
    document.body.addEventListener("DOMMouseScroll", mouseWheelEvt);
share|improve this answer
Re your EDIT, this is why you should use a library. – Cobby Feb 10 '12 at 3:36
@Cobby: good luck finding a library that implements cross-browser onmousewheel. There's a couple of jQuery plugins, but they're pretty big compared to the code here. :-) – Andy E Feb 10 '12 at 9:15
1  
jquery.mousewheel is actually pretty decent, and it's hardly "big". Your solution doesn't take into account the delta value. With a trackpad; the mousewheel event gets fired about 10 to 20 times for the slightest movement, which means scrolling 100px instead of the 10px the user was expecting. – Cobby Feb 11 '12 at 8:03
@Cobby: jquery.mousewheel doesn't do what my sample code does, so you're making an apples and oranges comparison. I just think it's excessive for this task. Also, I think you're confused about how delta works, which indicates the distance the mouse/trackpad was scrolled per event fired. So, if anything, this code would scroll a little slower for very large movements. Having taken this from some of my older code for a custom scrollbar, I can verify that it works fairly well, though I suppose I could improve it a little. You really should do your research before hastily down voting answers. – Andy E Feb 11 '12 at 12:51
1  
Sorry, I DID try your method incrementing a fixed amount but my <div> was trying to scroll about 2000px with just the slightest two-finger swipe on my trackpad... you need to use the delta to make something scroll nicely. I know exactly how delta works. – Cobby Feb 11 '12 at 13:39
show 7 more comments

As the solutions above does not work for me, here another one i just found: http://css-tricks.com/snippets/jquery/horz-scroll-with-mouse-wheel/

Example: http://digwp.com/archives/horz/

share|improve this answer
Example works in IE 10 – Mint Jul 30 '12 at 3:58
Thanks a lot for taking the time to post this comment @madc. Really helped. EDIT: the link to the plugin is down for me, and the demo on css-tricks doesn't work in Firefox 19.0.1 for me either but the example link your provided does so i just ripped the code off from there. – Calvin Mar 1 at 14:03

You may take a look at the scrollable plugin.

share|improve this answer
Or, possibly more relevant, the mousewheel plugin: jquerytools.org/documentation/toolbox/mousewheel.html – Diego Mar 21 '12 at 2:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.