Created
June 20, 2017 06:57
-
-
Save 0632347878/fbcb6ece56c064014ec4697939aabba9 to your computer and use it in GitHub Desktop.
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
$('.rocket').on('click touchend', function () { | |
$('html, body').animate({'scrollTop': 0}, 800, 'swing'); | |
return false; | |
}); |
Author
0632347878
commented
Sep 8, 2017
$('.js-anchor').click(function () {
$('html, body').animate({
scrollTop: $($.attr(this, 'href')).offset().top
}, 500);
});
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment