Created
April 30, 2015 14:14
-
-
Save sealucky7/cf12319f83deb289c43a to your computer and use it in GitHub Desktop.
Back to top
This file contains 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
<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