Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Padilo300/2bf02948a491b7623c7d512f684f7f3a to your computer and use it in GitHub Desktop.
Save Padilo300/2bf02948a491b7623c7d512f684f7f3a to your computer and use it in GitHub Desktop.
JS плавная прокрутка на якорь
$("a.scrollto").click(function() {
var elementClick = $(this).attr("href")
var destination = $(elementClick).offset().top;
jQuery("html:not(:animated),body:not(:animated)").animate({
scrollTop: destination
}, 800);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment