Created
February 4, 2014 08:33
-
-
Save cheh/8800038 to your computer and use it in GitHub Desktop.
Slow down background image scroll speed
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
jQuery( document ).ready( function( $ ) { | |
var body = document.body, | |
doc = document.documentElement; | |
$(window).scroll(function () { | |
body.style.backgroundPosition = "0px " + ( 830 -(Math.max(doc.scrollTop, body.scrollTop) / 4) ) + "px"; | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment