你的心如利箭 在风中笔直的飞翔
github DNS ALEXA CDN
jquery JS CSS CSS3 HTML5 svg php --- isux w3cplus

21270

  博客园  :: 首页  ::  ::  ::  :: 管理

jquery代码: 返回页面顶部

<script type="text/javascript" src="http://cdn.bootcss.com/jquery/1.11.2/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
    $(".go-top").click(function () {
        $(document.body).animate({scrollTop: 0}, 800);
        return false;
    });
    //滚屏
    $(window).scroll(function() {
        if($(document.body).scrollTop()>$(window).height()){
            //滚动高度大于(第一屏)页面高度,才显示
            $(".go-top").show();
            goTopTimer = setTimeout(function(){
                $(".go-top").hide();
            }, 2000);//1000毫秒
        }
    });
});
</script>
<style type="text/css">
body{height:5000px;background:url("http://s.cn.bing.net/az/hprichbg/rb/CrestedPigeon_ZH-CN11090922142_1920x1080.jpg");}
.go-top{position:fixed;right:1em;bottom:1em;background:#000;color:#fff;padding:1em;cursor:pointer;display:none;border-radius:5px;}
</style>

 

 

 

 

..

posted on 2015-10-20 12:35  bjhhh  阅读(233)  评论(0编辑  收藏  举报