Created
March 13, 2017 14:38
-
-
Save fearrr/06dc7776f931169f39df07f7c1484187 to your computer and use it in GitHub Desktop.
Плавная прокрутка объекта вместе со скроллом
This file contains hidden or 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
var $scrollingDiv = $("#scrollingDiv"); | |
$(window).scroll(function(){ | |
var $sT = $(window).scrollTop(); | |
$scrollingDiv | |
.stop() | |
.animate({"marginTop" : ($sT + 30) + "px"}, "slow"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment