MingL520

返回头部和底部,初始隐藏!

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title></title>
        <script type="text/javascript" src="js/jquery-1.8.3.js" ></script>
        <style>
            .gotop{
                width:50px;
                height:50px;
                background: darkred;
                color: #fff;
                font-size: 16px;
                position: fixed;
                right:20px;
                bottom: 200px;
                cursor: pointer;
                display: none;
            }
            .gobottom{
                width:50px;
                height:50px;
                background: darkred;
                color: #fff;
                font-size: 16px;
                position: fixed;
                right:20px;
                bottom: 140px;
                cursor: pointer;
                display: none;
            }
        </style>
    </head>
    <body>
        <div style="height:2000px;width:800px;margin:0 auto;background: green;">
            
            
        </div>
        <div class="gotop">
            回到顶部
        </div>
        <div class="gobottom">
            回到底部
        </div>
        
    </body>
    <script>
       function gotop(){
             $(window).scroll(function(){
                 var s=$(window).scrollTop();
                 s>150 ? $(".gobottom,.gotop").css("display","block") : $(".gobottom,.gotop").css("display","none");
             });
             $(".gotop").live("click",function(){
                 $("html,body").animate({scrollTop:0})
             })
             var h=$("html").height();
             $(".gobottom").live("click",function(){
                 $("html,body").animate({scrollTop:h})
             })
       }
       gotop();
    </script>
</html>

posted on 2016-11-30 11:36  MingL520  阅读(243)  评论(0编辑  收藏  举报

导航