Skip to content

Instantly share code, notes, and snippets.

@severuykhin
Created May 14, 2017 11:37
Show Gist options
  • Save severuykhin/4be048224c8f7b12bbad5e40f6461117 to your computer and use it in GitHub Desktop.
Save severuykhin/4be048224c8f7b12bbad5e40f6461117 to your computer and use it in GitHub Desktop.
Scroll detection
$('element').bind('DOMMouseScroll mousewheel', function(e){
event.preventDefault();
if(e.originalEvent.wheelDelta > 0 || e.originalEvent.detail < 0) {
//Actions
}
else{
//Actions
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment