Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Andrii-Yukhymenko/c4a92bf1ebd399a8364b37cefcf7caf9 to your computer and use it in GitHub Desktop.
Save Andrii-Yukhymenko/c4a92bf1ebd399a8364b37cefcf7caf9 to your computer and use it in GitHub Desktop.
JQuery Плавная прокрутка к элементу
$(document).ready(function() {
$("a.content__button").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