Skip to content

Instantly share code, notes, and snippets.

@sealucky7
Created June 15, 2015 12:15
Show Gist options
  • Select an option

  • Save sealucky7/6a0503762c73e787fdbd to your computer and use it in GitHub Desktop.

Select an option

Save sealucky7/6a0503762c73e787fdbd to your computer and use it in GitHub Desktop.
Parallax
$(window).scroll(function() {
var st = $(this).scrollTop() /10;
$(".object").css({
"transform" : "translate3d(0px, " + st + "%, .01px)",
"-webkit-transform" : "translate3d(0px, " + st + "%, .01px)"
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment