Skip to content

Instantly share code, notes, and snippets.

@daviesgeek
Created September 9, 2014 16:53
Show Gist options
  • Select an option

  • Save daviesgeek/07f43f70a487266cfe08 to your computer and use it in GitHub Desktop.

Select an option

Save daviesgeek/07f43f70a487266cfe08 to your computer and use it in GitHub Desktop.
Dead simple parallax scrolling
.parallax-bg {
position: absolute;
top: 0;
width: 100%;
}
function parallaxScroll() {
s = $(window).scrollTop()
$('.parallax-bg').css("top", (s/2) + "px")
};
parallaxScroll()
$(window).scroll(parallaxScroll)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment