Skip to content

Instantly share code, notes, and snippets.

@skorotkiewicz
Created December 8, 2016 15:17
Show Gist options
  • Save skorotkiewicz/12d6e88e4c28ec09f0bcf2d50451a872 to your computer and use it in GitHub Desktop.
Save skorotkiewicz/12d6e88e4c28ec09f0bcf2d50451a872 to your computer and use it in GitHub Desktop.
Copy “Make item scroll slower than window (Parallax)
$(window).scroll(function () {
$('#object').css({
'bottom' : -($(this).scrollTop()/10)+"px" // increase # to make even slower
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment