Created
March 6, 2019 19:45
-
-
Save bytefade/d1337f1e5990b3874908a44f4969ba5b to your computer and use it in GitHub Desktop.
scroll-animate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("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