в css:
.disable-hover, .disable-hover * { pointer-events: none !important; }
в js:
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);
подробности: 60 кадров в секунду с помощью pointer-events: none; при прокрутке