Created
February 15, 2017 14:52
-
-
Save Burick/760a8723908be5117b77aadb0cbc467a to your computer and use it in GitHub Desktop.
Кнопка скролла окна браузера вверх
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
/* == 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