Skip to content

Instantly share code, notes, and snippets.

@bytefade
Created March 6, 2019 19:45
Show Gist options
  • Save bytefade/d1337f1e5990b3874908a44f4969ba5b to your computer and use it in GitHub Desktop.
Save bytefade/d1337f1e5990b3874908a44f4969ba5b to your computer and use it in GitHub Desktop.
scroll-animate
$("a[href^='#']").click(function(e) {
e.preventDefault();
var position = $($(this).attr("href")).offset().top;
$("body, html").animate({
scrollTop: position
} /* speed */ );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment