Skip to content

Instantly share code, notes, and snippets.

@yumyo
Created December 11, 2013 14:04
Show Gist options
  • Save yumyo/7910952 to your computer and use it in GitHub Desktop.
Save yumyo/7910952 to your computer and use it in GitHub Desktop.
/**
* 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