-
-
Save jimyuan/12ca8bb38e7b6904f7bde1f271d9406a to your computer and use it in GitHub Desktop.
在页面滚动时禁用 :hover 样式
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
window.addEventListener('scroll', () => { | |
let body = document.body, timer | |
clearTimeout(timer) | |
!body.classList.contains('disable-hover') && body.classList.add('disable-hover') | |
timer = setTimeout(() => { | |
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