Skip to content

Instantly share code, notes, and snippets.

@beardlessman
Created July 26, 2017 09:21
Show Gist options
  • Save beardlessman/a63b375d0cbb26ef607a843c46c7516f to your computer and use it in GitHub Desktop.
Save beardlessman/a63b375d0cbb26ef607a843c46c7516f to your computer and use it in GitHub Desktop.
Плавный скролл к якорю
$(".j-anchor").click(function () {
var elementClick = $(this).attr("href")
var destination = $(elementClick).offset().top;
jQuery("html:not(:animated),body:not(:animated)").animate({scrollTop: destination - 100}, 800);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment