Created
March 19, 2020 09:55
-
-
Save jsakhil/cfac49e1deed1c1b1b542206d82f28b9 to your computer and use it in GitHub Desktop.
IE Background Image Fix when scrolling
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\/7\./)) { | |
document.body.addEventListener("mousewheel", function() { | |
event.preventDefault(); | |
var wd = event.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