Skip to content

Instantly share code, notes, and snippets.

@DmitriBarannyk
Created July 11, 2019 08:30
Show Gist options
  • Save DmitriBarannyk/573663e37190fb3c84940fd795c3d07f to your computer and use it in GitHub Desktop.
Save DmitriBarannyk/573663e37190fb3c84940fd795c3d07f to your computer and use it in GitHub Desktop.
scrollup to window
$(window).scroll(function(){
if ($(this).scrollTop() > 100) {
$('.scrollup').fadeIn();
} else {
$('.scrollup').fadeOut();
}
});
$('.scrollup').click(function(){
$("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment