Skip to content

Instantly share code, notes, and snippets.

@mfyance
Created May 4, 2018 01:36
Show Gist options
  • Save mfyance/de111a67ed075924bd6e13aee76a3e9e to your computer and use it in GitHub Desktop.
Save mfyance/de111a67ed075924bd6e13aee76a3e9e to your computer and use it in GitHub Desktop.
Detectar Dirección del Scroll
$(document.body).on('DOMMouseScroll mousewheel', function (e) {
if (e.originalEvent.detail > 0 || e.originalEvent.wheelDelta < 0) {
// down
} else {
// up
}
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment