gpt4 book ai didi

javascript - 突出显示滚动窗口中当前显示的所有 div

转载 作者:行者123 更新时间:2023-11-27 22:32:22 25 4
gpt4 key购买 nike

我有一些具有相同类别但不同高度的 div。我想在当前窗口框架中当前显示的所有 div 上添加突出显示类(窗口框架是可滚动的)。

我尝试了这段代码

$('.l3_box').each(function () {
var bottom_of_object = $(this).offset().top + $(this).outerHeight();
var bottom_of_window = $(window).scrollTop() + $(window).height();

/* If the object is completely visible in the window, fade it it */
if (bottom_of_window > bottom_of_object) {
$('#tab_out01 .l3_box').removeClass("testt");
$(this).addClass("testt");

}
});

当我的 div 大小等于或小于窗口大小时,这可以正常工作。但是当我的 div 大小远高于窗口的大小时,它不起作用,直到我到达 div 的末尾。

最佳答案

为什么不同时检查顶部和底部?

$('#tab_out01 .l3_box').removeClass("testt");
$('.l3_box').each(function () {
var bottom_of_object = $(this).offset().top + $(this).outerHeight();
var top_of_object = $(this).offset().top;
var center_of_window = $(window).scrollTop() + $(window).height() / 2;

/* If the object is completely visible in the window, fade it it */
if (bottom_of_object > center_of_window && center_of_window > top_of_object) {
$(this).addClass("testt");
return false; // break
}
});

关于javascript - 突出显示滚动窗口中当前显示的所有 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39445542/

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