gpt4 book ai didi

jquery - 是否可以制作 :before fade using jquery?

转载 作者:行者123 更新时间:2023-11-28 11:12:39 25 4
gpt4 key购买 nike

所以我有一个纯风格的 div,带有 :before 位于图像下方,CSS 看起来像这样:

.the-image-div {
width: 100px;
height: 100px;
box-shadow: inset 0px 0px 3px white;
border: 1px gray solid;
position: relative;
z-index: 3;
}

.image-stack {
width: 100px;
height: 100px;
background: white;
border: 1px solid gray;
position: relative;
top:3px;
left: 3px;
z-index: 2;
}

.image-stack:before {
content: " ";
width: 100px;
height: 100px;
background: white;
border: 1px solid gray;
box-shadow: inset 0px 0px 1px white;
position: absolute;
top: 3px;
left: 3px;
z-index: 1;
}

让 jquery 不仅选择图像堆栈而且还单独选择 :before 会很好。目标是在图像堆栈本身之后的几毫秒内将其淡化。想法?

最佳答案

JavaScript 不能与伪元素交互。相反,我会将 :before 应用于之后添加到元素的类,然后使用 CSS 过渡使其淡入。

关于jquery - 是否可以制作 :before fade using jquery?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14144950/

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