gpt4 book ai didi

html - 将鼠标悬停在父元素上时隐藏图像

转载 作者:太空宇宙 更新时间:2023-11-03 20:42:38 26 4
gpt4 key购买 nike

每当我将鼠标悬停在图像所在的 div 上时,我目前正在尝试为图像赋予 opacity: 0。目前,仅当我将鼠标悬停在实际图像上时,不透明度才会应用于图像,而不是当我将鼠标悬停在父 div 上时。我当前的代码:

HTML

<div class="Test" style="background-color:#D12121;padding-top:10px;padding-bottom:5px;">
<div class="fadeSponsorsSmall">
<img src="img/icon/small/white/sponsors.png">
<p style="color:white;"><b>Gastenboek</b></p>
</div>
</div>

CSS

.fadeSponsorsSmall {
background-image: url('../img/icon/small/black/sponsors.png');
background-size: 50px 50px;
background-repeat: no-repeat;
background-position: 22px 0px;
}
.fadeSponsorsSmall img:hover {
opacity: 0;
}

每当我将鼠标悬停在图像或任何具有 .test 类的东西上时,我都需要使图像的不透明度为 0。

最佳答案

你只需要像这样简单的东西:

fiddle

HTML

<div class="test">Hover over me!
<img src="http://placekitten.com/g/200/300">
</div>

CSS

.test:hover img {
opacity: 0;
}

<img><div>里面你只需要申请 :hover伪类到 div 并将样式应用于图像,因此 .test:hover img { ... } .

关于html - 将鼠标悬停在父元素上时隐藏图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24563224/

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