Skip to content

Instantly share code, notes, and snippets.

@seredniy
Last active April 5, 2019 14:33
Show Gist options
  • Save seredniy/a5811058fd5a7e6f39d51d19e2212d81 to your computer and use it in GitHub Desktop.
Save seredniy/a5811058fd5a7e6f39d51d19e2212d81 to your computer and use it in GitHub Desktop.
Кнопка "вверх" для сайта - проще нет
// Кнопочга вверх
$('.lift').click(function () {
$('body,html').animate({
scrollTop: 0
}, 400);
return false;
});
$(window).scroll(function(event) {if ($(window).scrollTop() >250) { $('.lift').show()} else {$('.lift').hide()};});
.lift {
background: lightblue;
height: 36px;
width: 36px;
text-align: center;
color: #fff;
position: fixed;
left: 15px;
bottom: 15px;
line-height: 40px;
font-size: 20px;
cursor: pointer;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment