返回头部 滚动出现

//底部分享条 $(document).scrollTop
$(window).scroll(function(){
    var t=document.documentElement.scrollTop|| document.body.scrollTop;
    if(t>500){$(".Us_top").removeClass("none");}else{$(".Us_top").addClass("none");};
    if (t>400) {$(".Bottm_Share").fadeIn();}else{$(".Bottm_Share").fadeOut();};
}).scroll();
$(".Us_top").click(function(){$("html,body").animate({ scrollTop: 0 }, 1000);})//返回顶部

var $goTop=$("#body_gotop");
    $(window).scroll(function(){
        var Top=$(window).scrollTop();
        Top>100?$goTop.show():$goTop.hide()
    });
    $goTop.click(function() {
        $("html,body").stop(false,false).animate({scrollTop:0}, 300);
    });

posted @ 2015-09-29 11:22  小猪~~  阅读(140)  评论(0编辑  收藏  举报