Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save VasylKyryliuk/d28a4c40b6f91cecfce565b2dc4bef11 to your computer and use it in GitHub Desktop.
Save VasylKyryliuk/d28a4c40b6f91cecfce565b2dc4bef11 to your computer and use it in GitHub Desktop.
$(function (){
$("#scrollup").hide();
$(window).scroll(function (){
if ($(this).scrollTop() > 700){
$("#scrollup").fadeIn(500);
} else{
$("#scrollup").fadeOut(500);
}
});
$("#scrollup").click(function (){
$("body,html").animate({
scrollTop:0
}, 800);
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment