Last active
December 16, 2017 02:33
-
-
Save rqreyes/e529ac9ad7e821c6d3fd17165a45cb07 to your computer and use it in GitHub Desktop.
fix ie and edge mousewheel jitter
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
if (navigator.userAgent.match(/Trident\//) || navigator.userAgent.match(/Edge\//)) { | |
document.body.addEventListener("mousewheel", function(evt) { | |
evt.preventDefault(); | |
var wd = evt.wheelDelta; | |
var csp = window.pageYOffset; | |
window.scrollTo(0, csp - wd); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment