Created
November 18, 2019 17:54
-
-
Save Farmatique/8f3a8f1f4f67ebd117ef3d2eaa2bc412 to your computer and use it in GitHub Desktop.
Scroll direction detect based on mousewheel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(window).bind('mousewheel', function(event) { | |
if (event.originalEvent.wheelDelta >= 0) { | |
console.log('Scroll up'); | |
} | |
else { | |
console.log('Scroll down'); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment