Last active
January 23, 2018 20:06
-
-
Save rqreyes/61712aafb47c60b01d4920deb521b218 to your computer and use it in GitHub Desktop.
parallax
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
function parallax() { | |
var scrolledY = $(window).scrollTop(); | |
$(".container").css("background-position", "center -" + ((scrolledY * 0.2)) + "px"); | |
} | |
parallax(); | |
$(window).scroll(function () { | |
parallax(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment