Last active
September 20, 2022 19:23
-
-
Save agragregra/893f46449625f1156e78 to your computer and use it in GitHub Desktop.
Smooth Parallax Scroll
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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
@sealucky7 @agragregra аппаратец не при чём. нет requestAnimationFrame и как минимум надо округлять получаемый st до toFixed(2)