1 Star 0 Fork 0

芥末AND萝卜/JqueryForDemo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
回到顶部组件.html 962 Bytes
一键复制 编辑 原始数据 按行查看 历史
芥末AND萝卜 提交于 2018-10-25 17:40 . text
<!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>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/timemachineZ/JqueryForDemo.git
git@gitee.com:timemachineZ/JqueryForDemo.git
timemachineZ
JqueryForDemo
JqueryForDemo
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385