Skip to content

Instantly share code, notes, and snippets.

@ColtMoney
Created April 19, 2017 15:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ColtMoney/006fbe4a7d64fcdbd57fae07954be076 to your computer and use it in GitHub Desktop.
Save ColtMoney/006fbe4a7d64fcdbd57fae07954be076 to your computer and use it in GitHub Desktop.
$(".scroll-top-box").hide();
$(window).scroll(function (){
if ($(this).scrollTop() > 500){
$(".scroll-top-box").fadeIn();
} else{
$(".scroll-top-box").fadeOut();
}
});
$(".scroll-top-box").on("click", function(){
$('html, body').animate({scrollTop:0}, 'slow');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment