gpt4 book ai didi

javascript - 向下滚动淡化元素

转载 作者:行者123 更新时间:2023-11-29 18:56:51 26 4
gpt4 key购买 nike

我想在另一边做淡入淡出:fadeIn 从下到上,而不是像现在那样,fadeOut 从下到上

var $elem = $('.test.fade');
for (var i = 0; i <= 5; i++) {
$elem.clone().appendTo('body');
}
$(window).scroll(function() {
$('.fade').each(function() {
var bounds = this.getBoundingClientRect(),
op = Math.max((bounds.height + Math.min(bounds.top, 0)) / bounds.height, 0);
$(this).css('opacity', op);
});
});
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}

.test {
height: 70vh;
width: 30%;
background-color: rgba(0, 0, 0, 0.6);
margin: 1em auto;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="test fade"></div>

jsfiddle

谢谢你的帮助。

最佳答案

将不透明度计算更改为:

op = Math.max((bounds.height - Math.max(bounds.top, 0)) / bounds.height, 0);

因此它变得依赖于框的底部边框。

关于javascript - 向下滚动淡化元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49127426/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com