Skip to content

Instantly share code, notes, and snippets.

@ntnyq
Last active September 6, 2019 09:51
Show Gist options
  • Save ntnyq/16bf8eb9c322b9f393737ebad752729f to your computer and use it in GitHub Desktop.
Save ntnyq/16bf8eb9c322b9f393737ebad752729f to your computer and use it in GitHub Desktop.
[Jqery Utils] #jQuery #Utils
;(function ($) {
var $backToTop = $('#back-to-top');
$(window).scroll(function(e) {
if ($(window).scrollTop() >= 100) {
$backToTop.fadeIn(300);
} else {
$backToTop.fadeOut(300);
}
});
$backToTop.click(function(e) {
$('html, body').animate({
scrollTop: '0px'
}, 800);
e.preventDefault();
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment