Skip to content

Instantly share code, notes, and snippets.

@msherstobitow
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save msherstobitow/764f364539e55bc44a0f to your computer and use it in GitHub Desktop.
Save msherstobitow/764f364539e55bc44a0f to your computer and use it in GitHub Desktop.
Web page perfomance: remove pointer-events on page scroll.
.disable-hover,
.disable-hover * {
pointer-events: none !important;
}
var body = document.body,
timer;
window.addEventListener('scroll', function() {
clearTimeout(timer);
if(!body.classList.contains('disable-hover')) {
body.classList.add('disable-hover')
}
timer = setTimeout(function(){
body.classList.remove('disable-hover')
},500);
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment