gpt4 book ai didi

jquery - 当 div 在另一个下面时添加类

转载 作者:太空宇宙 更新时间:2023-11-03 17:55:39 24 4
gpt4 key购买 nike

我试图在一个 div 滑到另一个 div 下方时向它添加一个类。请参阅我的简单时间 slider 示例。我想向 div 添加一个类,它会加粗时间 slider 下方的字体,就像复制 Mac 停靠栏放大悬停效果的悬停状态一样。还想在红色 slider 下的时间顶部和底部的两次添加一个类。

http://codepen.io/pixelchef/pen/Bpghm

<div class="times">
<div class="datepast hour">
- 9 am
</div>
<div class="datepast hour">
- 10 am
</div>
<div class="datepast hour">
- 11 am
</div>
<div class="datepast hour">
- 12 am
</div>
<div class="datepast hour">
- 1 pm
</div>

最佳答案

如果我答对了你的问题,你想知道如何知道一个 div 何时悬停在另一个 div 上。我做了一个小变通办法,可能对你有用。

JSFIDDLE:LINK

我在定位 position: fixed 容器并在可滚动的 div 中获取它的位置时遇到了一个大问题,但是因为它的所有外观我想我会给你一个至少显示的答案容器中间的粗体文本。

请注意,重要的部分发生在 $("#Background").scroll() 中,其他一切都只是为了外观。

HTML:

<div id="Background" class="bg">
<div id="list"></div>
<div id="boldarea"></div>
</div>

JQuery:

var list = [];

for (var i = 0; i < 24; i++) {
list.push(i + "am");
}

var elements = "";
list.forEach(function (entry, index) {
elements += "<div class=\"text\">" + entry + "</div>";
});
$("#list").html(elements);

//SCROLL EVENT
$("#Background").scroll(function () {
$("div .text").each(function (index, entry) {
console.log($("#boldarea").offset().top);
if ($(entry).position().top > (($("#boldarea").position().top/2) - 8) &&
$(entry).position().top < (($("#boldarea").position().top/2) + 8) )
{
$(entry).css("font-weight", "bold");
}
else
{
$(entry).css("font-weight", "normal");
};
});
});

代替$(entry).css("font-weight", "bold");你可以写$(entry).addClass("myClass");以获得更多动态样式。

CSS:

#boldarea {
position:fixed;
top: 50%;
height: 12px;
width: 35%;
background-color: red;
opacity: 0.5;
}
.bg {
position:absolute;
height: 50%;
width: 50%;
left: 25%;
top:25%;
background-color: lightgrey;
overflow-y: scroll;
}
.text {
position: relative;
color: black;
font-weight: normal;
}

关于jquery - 当 div 在另一个下面时添加类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26392815/

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