Skip to content

Instantly share code, notes, and snippets.

@fearrr
Created March 13, 2017 14:38
Show Gist options
  • Save fearrr/06dc7776f931169f39df07f7c1484187 to your computer and use it in GitHub Desktop.
Save fearrr/06dc7776f931169f39df07f7c1484187 to your computer and use it in GitHub Desktop.
Плавная прокрутка объекта вместе со скроллом
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