Last active
December 29, 2015 20:19
-
-
Save shamangeorge/7723306 to your computer and use it in GitHub Desktop.
How to disable scrolling temporarily JS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// From http://stackoverflow.com/questions/4770025/how-to-disable-scrolling-temporarily | |
// left: 37, up: 38, right: 39, down: 40, | |
// spacebar: 32, pageup: 33, pagedown: 34, end: 35, home: 36 | |
var keys = [37, 38, 39, 40]; | |
function preventDefault(e) { | |
e = e || window.event; | |
if (e.preventDefault) | |
e.preventDefault(); | |
e.returnValue = false; | |
} | |
function keydown(e) { | |
for (var i = keys.length; i--;) { | |
if (e.keyCode === keys[i]) { | |
preventDefault(e); | |
return; | |
} | |
} | |
} | |
function wheel(e) { | |
preventDefault(e); | |
} | |
function disable_scroll() { | |
if (window.addEventListener) { | |
window.addEventListener('DOMMouseScroll', wheel, false); | |
} | |
window.onmousewheel = document.onmousewheel = wheel; | |
document.onkeydown = keydown; | |
} | |
function enable_scroll() { | |
if (window.removeEventListener) { | |
window.removeEventListener('DOMMouseScroll', wheel, false); | |
} | |
window.onmousewheel = document.onmousewheel = document.onkeydown = null; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment