Skip to content

Instantly share code, notes, and snippets.

@mudhappy
Last active December 9, 2017 22:47
Show Gist options
  • Save mudhappy/074b1980ff007b2a0042fc1e26cb67de to your computer and use it in GitHub Desktop.
Save mudhappy/074b1980ff007b2a0042fc1e26cb67de to your computer and use it in GitHub Desktop.
Scroll Top Jquery
$(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