首页 > 代码库 > 网页返回顶部之animate方法
网页返回顶部之animate方法
点击返回顶部按钮,页面滑动形式回到顶部!
HTML代码:
<div id="ctop">回到<br>顶部</div>
CSS代码:
#ctop{width:45px; height:45px; position: fixed; left:50%; bottom:120px; border:solid 1px #ccc; background: #fff; margin-left: 600px; text-align: center; line-height: 22px;cursor: pointer; display: none;font-size: 12px; color: #999}
JavaScript代码:
//点击回到顶部
$("#ctop").click(function(){
$("html,body").animate({scrollTop:‘0px‘},300)
})
//判断元素在网页下滑多少像素时显示
$(window).bind(‘scroll‘,function(){
var len=$(this).scrollTop()
if(len>=500){
$(‘#ctop‘).fadeIn(500);
}else{
$(‘#ctop‘).fadeOut(200);
}
});
网页返回顶部之animate方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。