Last active
April 5, 2019 14:19
-
-
Save sDLme/f4a86c5e5bfcf98d890967c3aa0512c2 to your computer and use it in GitHub Desktop.
easy anchor scroll.
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 class="header-button" href="#form> | |
<section id="form"></section> | |
// scroll | |
$(".header-button").on("click", function (event) { | |
event.preventDefault(); | |
var id = $(this).attr('href'), | |
top = $(id).offset().top; | |
$('body,html').animate({scrollTop: top}, 1500); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment