Skip to content

Instantly share code, notes, and snippets.

@sealucky7
Created April 30, 2015 14:14
Show Gist options
  • Save sealucky7/cf12319f83deb289c43a to your computer and use it in GitHub Desktop.
Save sealucky7/cf12319f83deb289c43a to your computer and use it in GitHub Desktop.
Back to top
<div id="top" class="back-to-top"><img src="img/back-to-top.jpg" alt="arrow-to-top"/></div>
<script type="text/javascript">
var top_show = 150; // В каком положении полосы прокрутки начинать показ кнопки "Наверх"
var delay = 1000; // Задержка прокрутки
$(document).ready(function() {
$(window).scroll(function () { // При прокрутке попадаем в эту функцию
/* В зависимости от положения полосы прокрукти и значения top_show, скрываем или открываем кнопку "Наверх" */
if ($(this).scrollTop() > top_show) $('#top').fadeIn();
else $('#top').fadeOut();
});
$('#top').click(function () { // При клике по кнопке "Наверх" попадаем в эту функцию
/* Плавная прокрутка наверх */
$('body, html').animate({
scrollTop: 0
}, delay);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment