gpt4 book ai didi

html - 将 child 的不透明度设置为比其 parent 大

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

所以这是我的代码,显然它不起作用....基本上我希望能够在隐藏父级时看到 #child

 <style>
#parent { opacity : 0 }
#parent:hover { opacity : 1 }
#child { opacity:1 }
</style>

<div id="parent">
<h1 id="child"> title </h1>
<span>aaaa</span>
<span>aaaa</span>
<span>aaaa</span>
</div>

它是非常大的代码的一部分,其中包含很多 jquery 效果和其他人编写的代码,我不想弄乱任何东西,所以我真的不想将#child 移到#parent 之外

最佳答案

元素的不透明度源自其父元素:

MDN: an element and its contained children all have the same opacity relative to the element's background, even if the element and its children have different opacities relative to one another.

解决这个问题的一种方法是使用 rgba 颜色而不是不透明度:

 #parent {
color:rgba(0, 0, 0, 0);
}
#parent:hover {
color:rgba(0, 0, 0, 1);
}
#child {
color:rgba(0, 0, 0, 1);
}
<div id="parent">
<h1 id="child"> title </h1>
<span>aaaa</span>
<span>aaaa</span>
<span>aaaa</span>
</div>

关于html - 将 child 的不透明度设置为比其 parent 大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27868662/

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