Created
October 30, 2017 19:26
-
-
Save MSerj/b62b3671a24b9eda41dfb8c1a1165581 to your computer and use it in GitHub Desktop.
Scroll to top
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.go-top').click(function() { | |
$('html, body').animate({scrollTop: 0}, 300); | |
}); | |
//go-top | |
$(window).scroll(function() { | |
if ($(window).scrollTop() > 150) { | |
$('.go-top').fadeIn(); | |
} else { | |
$('.go-top').fadeOut(); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment