jlittlejohn
12/5/2013 - 9:42 PM

JS: Remove Hover Events on Scroll

JS: Remove Hover Events on Scroll

/* CSS
.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);