Skip to content

Instantly share code, notes, and snippets.

@zaurmag
Last active August 7, 2016 18:29
Show Gist options
  • Save zaurmag/3d37e7008b2ceec2c8bf79d54006c0b6 to your computer and use it in GitHub Desktop.
Save zaurmag/3d37e7008b2ceec2c8bf79d54006c0b6 to your computer and use it in GitHub Desktop.
Плавный скроллинг до блока
// ======= Animate Anchor =======
$(".arrow-go-down").click(function() {
$("html, body").animate({
scrollTop: $($(this).attr("href")).offset().top + "px"
}, {
duration: 500
});
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment