Skip to content

Instantly share code, notes, and snippets.

@Burick
Created February 15, 2017 14:52
Show Gist options
  • Save Burick/760a8723908be5117b77aadb0cbc467a to your computer and use it in GitHub Desktop.
Save Burick/760a8723908be5117b77aadb0cbc467a to your computer and use it in GitHub Desktop.
Кнопка скролла окна браузера вверх
/* == Scroll top page == */
$(window).scroll(function (){
if ($(this).scrollTop() > 100){
$("#up").fadeIn();
} else{
$("#up").fadeOut();
}
});
$('#up').click(function() {
$('html, body').animate({scrollTop: 0},800);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment