作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一些具有相同类别但不同高度的 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/
有没有一种方法可以“标记”对象的属性,使它们在反射中“突出”? 例如: class A { int aa, b; string s1, s2; public int AA
我是一名优秀的程序员,十分优秀!