Created
August 23, 2014 09:59
-
-
Save AuthorProxy/f8253d7393cf88c78037 to your computer and use it in GitHub Desktop.
Disable events while scrolling page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .disable-hover { | |
| pointer-events: none; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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