Skip to content

Instantly share code, notes, and snippets.

@StasKoval
Created May 29, 2013 11:47
Show Gist options
  • Save StasKoval/5669716 to your computer and use it in GitHub Desktop.
Save StasKoval/5669716 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
// прячем кнопку #back-top
$("#back-top").hide();
// появление/затухание кнопки #back-top
$(function (){
$(window).scroll(function (){
if ($(this).scrollTop() > 100){
$('#back-top').fadeIn();
} else{
$('#back-top').fadeOut();
}
});
// при клике на ссылку плавно поднимаемся вверх
$('#back-top').click(function (){
$('body,html').animate({
scrollTop:0
}, 800);
return false;
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment