移动端回到顶部

来源:互联网 发布:城觅 网络异常 编辑:程序博客网 时间:2024/05/21 10:16

html:

<a href="javascript:goTop();" class="gotop"><img src="__STATIC__/images/topup.png"></a>

css:

.gotop{
    display: block;
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 70px;
    right: 8px;
    background-color: rgba(243,241,241,0.5);
    border: 1px solid #CCC;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.gotop img{
    display: block;
    width: 40px;
    height: 40px;
}

js:

<script src="__STATIC__/js/jquery-3.1.1.min.js" type="text/javascript" charset="utf-8"></script>

<script>
        function goTop(){
            $('html,body').animate({'scrollTop':0},600);
        }
</script>



原创粉丝点击