Skip to content

Instantly share code, notes, and snippets.

@cdmz
Created December 30, 2015 12:57
Show Gist options
  • Select an option

  • Save cdmz/e6b5eacf9da5329dbcff to your computer and use it in GitHub Desktop.

Select an option

Save cdmz/e6b5eacf9da5329dbcff to your computer and use it in GitHub Desktop.
event on scroll mouse
$('body').on('DOMMouseScroll mousewheel', function (event) {
var $elem = $(this);
event.preventDefault();
if (event.originalEvent.detail > 0 || event.originalEvent.wheelDelta < 0) {
console.log("pra baixo")
}else{
console.log("pra cima")
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment