返回顶部按钮

$(function(){
$(window).scroll(function(){
if($(window).scrollTop()>100){
$("#back-to-top").fadeIn(1000);
}
else{
$("#back-to-top").fadeOut(1000);
}
});

$("#back-to-top").click(function(){
$("body,html").animate({"scrollTop":0},500);
return false;
});
})

posted @ 2016-10-13 08:52  2350305682  阅读(179)  评论(0编辑  收藏  举报