jquery-品优购电梯导航-71
2024-06-24 07:23:24 阅读次数:22
css,javascript,jquery
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="./js/jquery.min.js"></script>
<style>
.recommend {
height: 1000px;
background-color: red;
}
.fixedtool {
width: 100px;
height: 101px;
background-color: pink;
}
</style>
</head>
<body>
<div class="recommend">1</div>
<div class="fixedtool">2</div>
<script>
$(function() {
var toolTop = $(".recommend").offset().top;
$(window).scroll(function() {
if ($(document).scrollTop() >= toolTop) {
$(".fixedtool").fadeIn();
} else {
$(".fixedtool").fadeOut();
}
})
})
</script>
</body>
</html>
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/u_15460007/6048619,作者:前端导师歌谣,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。
上一篇:ZOJ1117 POJ1521 HDU1053 Huffman编码
下一篇:【PicGo+OSS】解决报错The request signature we calculated does not match the signature you provided.Check..