tarashish
tarashish

Reputation: 1965

Scrolling an element horizontally using JQuery on mouse scroll

I have a simple image gallery here. All I want to do is to scroll through the list of images when the user scrolls his mouse.

Any ideas ? $('').scroll() definitely doen't work. Even if i bind it to the window by

$(window).scroll(function() {
  //do something
});

It doen't work , because my window has too less height to be scrollable.

Upvotes: 1

Views: 500

Answers (1)

Baptiste Pernet
Baptiste Pernet

Reputation: 3384

This is not jQuery, but there is a pure JS plugin to capture the mouse scroll event:

http://viralpatel.net/blogs/javascript-mouse-scroll-event-down-example/

demo:

http://viralpatel.net/blogs/demo/javascript-mouse-scroll-wheel-event.html

Upvotes: 1

Related Questions