我正在努力
fadeIn()
当用户向下滚动页面时,我的所有元素。当
scrollTop()
文件到达
SCROLLTP()
元素的,元素应该显示。
$(document).ready(function() {
$(this).scroll(function() {
let pos = $(this).scrollTop();
$('.full-height').each(function() {
if (pos > $(this).scrollTop()) {
$(this).closest('inner').fadeIn();
}
});
});
});
.full-height {
height: 100vh;
}
.flex-center {
align-items: center;
display: flex;
justify-content: center;
}
.position-ref {
position: relative;
}
.inner {
display: none;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="flex-center position-ref full-height">
<div class='inner'>
Foo
</div>
</div>
<div class="flex-center position-ref full-height">
<div class='inner'>
Bar
</div>
</div>
但是,我当前的代码根本不起作用。因为我有多个容器,所以我尝试使用
each()
方法在这些多个容器中分别检查
SCROLLTP()
.
当滚动条到达元素顶部时,如何显示内部元素?