Skip to content

Instantly share code, notes, and snippets.

@hfknight
Last active July 12, 2017 15:48
Show Gist options
  • Save hfknight/fd88a3b6b91872bf29abb17b604bb8d7 to your computer and use it in GitHub Desktop.
Save hfknight/fd88a3b6b91872bf29abb17b604bb8d7 to your computer and use it in GitHub Desktop.
function MouseWheelHandler(e) {
var e = window.event || e; // old IE support
var delta = Math.max(-1, Math.min(1, (e.wheelDelta || -e.detail)));
if (delta < 0) // scroll down
// scroll downaction here
else // scroll up
// scroll up action here
}
if (window.addEventListener) {
window.addEventListener("mousewheel", MouseWheelHandler, false);
window.addEventListener("DOMMouseScroll", MouseWheelHandler, false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment