代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>回到顶部组件</title>
<script type="text/javascript" src="js/jquery-3.3.1.min.js" ></script>
</head>
<style>
#btn_top{
position: absolute;
bottom: 10px;
right: 10px;
display: none;
width:30px;
height: 30px;
line-height: 30px;
border-radius: 5px;
text-align: center;
color: #ffffff;
font-size: 16px;
}
.wrapper{
width: 1200px;
height: 1200px;
background: black;
}
</style>
<body>
<div class="wrapper">
1
</div>
<button id="btn_top">
回到顶部
</button>
<script>
$(
function () {
$(window).scroll(
function(){
if( $(window).scrollTop() >= 50 ){
$('#btn_top').fadeIn();
}
else {
$("#btn_top").fadeOut();
}
}
)
}
);
$('#btn_top').click(function(){
$('html,body').animate({scrollTop: 0},500);
})
</script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。