Skip to content

Instantly share code, notes, and snippets.

@grayghostvisuals
Created November 27, 2013 01:40
Show Gist options
  • Save grayghostvisuals/7669377 to your computer and use it in GitHub Desktop.
Save grayghostvisuals/7669377 to your computer and use it in GitHub Desktop.
Disable hover on scroll to improve performance and avoid costly paints.
// Disable Hover on Scroll Class
// Add these helpers to your utlity.css
// http://www.thecssninja.com/javascript/pointer-events-60fps
.disable-hover,
.disable-hover * {
pointer-events: none !important;
}
// ----------------------------------------------------------------------
// =Disable Hover on Scroll
// http://www.thecssninja.com/javascript/pointer-events-60fps
// ----------------------------------------------------------------------
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