Created
April 21, 2014 10:08
-
-
Save johanneslumpe/11138298 to your computer and use it in GitHub Desktop.
Fullsize background videos in webkit browsers gist 4
This file contains 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', function (e) { | |
// unfortunately this will never fire | |
console.log('we are scrolling!'); | |
}, false); | |
document.querySelector('body').addEventListener('scroll', function (e) { | |
// this one will fire though | |
console.log('yay!'); | |
}, false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment