Skip to content

Instantly share code, notes, and snippets.

@mehedidb
Forked from agragregra/parallax-translate3d.js
Created February 20, 2018 17:07
Show Gist options
  • Save mehedidb/df9d97ab172be98e25c6e6b23dedf7b1 to your computer and use it in GitHub Desktop.
Save mehedidb/df9d97ab172be98e25c6e6b23dedf7b1 to your computer and use it in GitHub Desktop.
Smooth Parallax Scroll
$(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