标签:
//页面滚动时,是否显示回到顶部 $(window).scroll(function(){ if($(window).scrollTop() > 1500){ $(‘.returntop‘).show(); }else{ $(‘.returntop‘).hide(); } }); //回到顶部的点击事件 $(‘.returntop‘).click(function(){ var timer = null; timer = setInterval(function(){ var top = document.documentElement.scrollTop || document.body.scrollTop; var speed = Math.ceil(top/6);//高度小于6时可以一直递减到0 document.documentElement.scrollTop = top - speed;//缓慢增加 document.body.scrollTop = top - speed; if(!top){ clearInterval(timer); } },50) });
标签:
原文地址:http://www.cnblogs.com/camille666/p/returntop.html