Created
February 28, 2016 16:47
-
-
Save thebouv/1970f35ff885e29a1315 to your computer and use it in GitHub Desktop.
Disable scrolling
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
// as seen here: 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: 1, 38: 1, 39: 1, 40: 1}; | |
function preventDefault(e) { | |
e = e || window.event; | |
if (e.preventDefault) | |
e.preventDefault(); | |
e.returnValue = false; | |
} | |
function preventDefaultForScrollKeys(e) { | |
if (keys[e.keyCode]) { | |
preventDefault(e); | |
return false; | |
} | |
} | |
function disableScroll() { | |
if (window.addEventListener) // older FF | |
window.addEventListener('DOMMouseScroll', preventDefault, false); | |
window.onwheel = preventDefault; // modern standard | |
window.onmousewheel = document.onmousewheel = preventDefault; // older browsers, IE | |
window.ontouchmove = preventDefault; // mobile | |
document.onkeydown = preventDefaultForScrollKeys; | |
} | |
function enableScroll() { | |
if (window.removeEventListener) | |
window.removeEventListener('DOMMouseScroll', preventDefault, false); | |
window.onmousewheel = document.onmousewheel = null; | |
window.onwheel = null; | |
window.ontouchmove = null; | |
document.onkeydown = null; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment