Skip to content

Instantly share code, notes, and snippets.

@amorkovin
Created September 7, 2018 08:58
Show Gist options
  • Save amorkovin/a3bb0e23b3e892fce2cc2587b0667a46 to your computer and use it in GitHub Desktop.
Save amorkovin/a3bb0e23b3e892fce2cc2587b0667a46 to your computer and use it in GitHub Desktop.
Стрелочка наверх
$('html, body').animate({scrollTop: 0}, 700);
});
var win = $(window);
var up = $('#up');
win.on('scroll', function() {
if ( win.scrollTop() > win.height() / 3 ) {
up.fadeIn();
} else {
up.fadeOut();
}
}).scroll();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment