Skip to content

Instantly share code, notes, and snippets.

@Korveld
Created May 22, 2015 11:58
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 Korveld/18c45d4bb03d286004ca to your computer and use it in GitHub Desktop.
Save Korveld/18c45d4bb03d286004ca to your computer and use it in GitHub Desktop.
Scroll to top of the page
$(window).scroll(function () {
if ($(this).scrollTop() > 150) {
$('.scroll-top').fadeIn(400);
}
else {
$('.scroll-top').fadeOut(400);
}
});
$('.scroll-top').click(function () {
$('body, html').animate({
scrollTop: 0
}, 800);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment