Skip to content

Instantly share code, notes, and snippets.

@idcooldi
Created November 11, 2015 15:33
Show Gist options
  • Save idcooldi/1d8fc4acd13f0a41bad5 to your computer and use it in GitHub Desktop.
Save idcooldi/1d8fc4acd13f0a41bad5 to your computer and use it in GitHub Desktop.
Parallax Effect / по средствам анимации
$(window).scroll(function() {
var st = $(this).scrollTop() /10;
$(".object").css({
"transform" : "translate3d(0px, " + st + "%, 0px)",
"-webkit-transform" : "translate3d(0px, " + st + "%, 0px)"
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment