Skip to content

Instantly share code, notes, and snippets.

@rqreyes
Last active January 23, 2018 20:06
Show Gist options
  • Save rqreyes/61712aafb47c60b01d4920deb521b218 to your computer and use it in GitHub Desktop.
Save rqreyes/61712aafb47c60b01d4920deb521b218 to your computer and use it in GitHub Desktop.
parallax
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