Skip to content

Instantly share code, notes, and snippets.

@Jenya476
Created November 13, 2016 18:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jenya476/e089f8ff273932e138485f21df2a0e32 to your computer and use it in GitHub Desktop.
Save Jenya476/e089f8ff273932e138485f21df2a0e32 to your computer and use it in GitHub Desktop.
Паралакс
$(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