Created
December 11, 2013 14:04
-
-
Save yumyo/7910952 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/** | |
* Disable and enable event on scroll begin and scroll end. | |
* @see http://www.thecssninja.com/javascript/pointer-events-60fps | |
*/ | |
var root = document.documentElement; | |
var timer; | |
window.addEventListener('scroll', function() { | |
// User scrolling so stop the timeout | |
clearTimeout(timer); | |
// Pointer events has not already been disabled. | |
if (!root.style.pointerEvents) { | |
root.style.pointerEvents = 'none'; | |
} | |
timer = setTimeout(function() { | |
root.style.pointerEvents = ''; | |
}, 500); | |
}, false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment