Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created November 18, 2019 17:54
Show Gist options
  • Save Farmatique/8f3a8f1f4f67ebd117ef3d2eaa2bc412 to your computer and use it in GitHub Desktop.
Save Farmatique/8f3a8f1f4f67ebd117ef3d2eaa2bc412 to your computer and use it in GitHub Desktop.
Scroll direction detect based on mousewheel
$(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