Last active
December 9, 2017 22:47
-
-
Save mudhappy/074b1980ff007b2a0042fc1e26cb67de to your computer and use it in GitHub Desktop.
Scroll Top Jquery
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
$(function() { | |
$(".fa-angle-down").on("click", function() | |
{ | |
let altura = $( window ).height(); | |
$("html, body").animate({ scrollTop: altura }, "slow"); | |
return false; | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment