要实现当向下滚动页面时,让粘滞/固定的导航栏在其上方隐藏div,可以通过以下步骤来实现:
以下是一个示例的代码实现:
<!DOCTYPE html>
<html>
<head>
<style>
.navbar {
position: fixed;
top: 0;
width: 100%;
background-color: #f1f1f1;
padding: 10px;
}
.content {
margin-top: 50px; /* 为了避免导航栏遮挡内容,给内容区域添加上边距 */
}
.hidden-div {
display: block;
height: 200px;
background-color: #ccc;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="navbar">导航栏</div>
<div class="content">
<h1>页面内容</h1>
<div class="hidden-div">隐藏的div</div>
<!-- 更多内容 -->
</div>
<script>
window.addEventListener('scroll', function() {
var navbar = document.querySelector('.navbar');
var hiddenDiv = document.querySelector('.hidden-div');
var threshold = 200; // 设置滚动阈值,超过该值时隐藏div
if (window.pageYOffset > threshold) {
hiddenDiv.style.display = 'none';
} else {
hiddenDiv.style.display = 'block';
}
});
</script>
</body>
</html>
在上述示例中,通过CSS将导航栏设置为固定定位,然后使用JavaScript监听滚动事件,在滚动事件的处理函数中判断滚动的垂直距离是否超过了阈值,如果超过了阈值,则隐藏div。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云