Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Use jQuery to check mousewheel event without scrollbar

How to check mousewheel movement without scrollbar?

$(document).mousewheel(function() {
     clicker.html("a7a");
});
like image 652
saik0o Avatar asked Sep 18 '13 18:09

saik0o


4 Answers

I highly recommend you use this jQuery plugin: PLUGIN

Without a plugin, try this example: EXAMPLE

HTML:

<div id='foo' style='height:300px; width:300px; background-color:red'></div>

Javascript:

$('#foo').bind('mousewheel', function(e) {
    if(e.originalEvent.wheelDelta / 120 > 0) {
        alert('up');
    } else {
        alert('down');
    }
});

There is no scrollbar on the div but the wheel event is detected.

like image 174
Aaron Avatar answered Oct 29 '22 20:10

Aaron


use this code

$('#foo').bind('mousewheel DOMMouseScroll', function (event) {           
     if (event.originalEvent.wheelDelta > 0 || event.originalEvent.detail < 0) {
          //up
     }
     else {
          //down
     }
});
like image 39
Behnam Mohammadi Avatar answered Oct 29 '22 21:10

Behnam Mohammadi


And, if you don't want to use any plugin at all (IE8, Chrome, Firefox, Safari, Opera...), just do this:

if (document.addEventListener) {
    document.addEventListener("mousewheel", MouseWheelHandler(), false);
    document.addEventListener("DOMMouseScroll", MouseWheelHandler(), false);
} else {
    sq.attachEvent("onmousewheel", MouseWheelHandler());
}


function MouseWheelHandler() {
    return function (e) {
        // cross-browser wheel delta
        var e = window.event || e;
        var delta = Math.max(-1, Math.min(1, (e.wheelDelta || -e.detail)));

        //scrolling down?
        if (delta < 0) {
            alert("Down");
        }

        //scrolling up?
        else {
             alert("Up");
        }
        return false;
    }
}

Living example: http://jsfiddle.net/CvCc6/1/

like image 7
Alvaro Avatar answered Oct 29 '22 19:10

Alvaro


This is just an update to @Aaron's answer, using the new "wheel" event, described here: https://developer.mozilla.org/en-US/docs/Web/Events/wheel

$('#foo').on('wheel', function(e){
    if(e.originalEvent.deltaY < 0) {
        console.log('scrolling up !');
    } else{
        console.log('scrolling down !');
    }
});

You can also use deltaX to see horizontal scroll, or deltaZ if you've got some crazy 3D thing going on.

like image 2
nHaskins Avatar answered Oct 29 '22 19:10

nHaskins