回到顶部
Posted xsffliu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了回到顶部相关的知识,希望对你有一定的参考价值。
<div class="to-top"><img src="/wap/tpl/fanwe/shop/img/toTop.png" alt=""/></div>
$(function(){ // 回到顶部 $(window).scroll(function(){ if($(window).scrollTop() > 100){ $(".to-top").fadeIn(1000);//一秒渐入动画 }else{ $(".to-top").fadeOut(1000);//一秒渐隐动画 } }); $(".to-top").click(function(){ $(‘body,html‘).animate({scrollTop:0},1000); }); })
.to-top{ display: none; width:47px; height:47px; position: fixed; bottom:100px; right:15px; img{ width:47px; } }
以上是关于回到顶部的主要内容,如果未能解决你的问题,请参考以下文章