gpt4 book ai didi

css - 如何在悬停时更改文本的不透明度?

转载 作者:太空宇宙 更新时间:2023-11-04 02:13:53 25 4
gpt4 key购买 nike

hover 上,我希望图像和文本的不透明度变为 0.5。但它仅适用于图像,不适用于文本:

a:hover {
opacity: 0.5;
cursor:pointer;
}
<a>
<img src="http://agriculture.vic.gov.au/__data/assets/image/0005/182390/rabbit_img1.jpg" style="max-height:90px">
<footer class="logo-footer">Matthew <cite>Rabbit</cite></footer>
</a>

最佳答案

<a>
<img src="http://agriculture.vic.gov.au/__data/assets/image/0005/182390/rabbit_img1.jpg" style="max-height:90px">
<footer class="logo-footer">Matthew <cite>Rabbit</cite></footer>
</a>

body {
background: red;
}

a:hover {
opacity: 0.5;
cursor:pointer;
}

a:hover footer {
opacity: 0.5;
}

这是一个可用的 fiddle 。

https://jsfiddle.net/djL0Lwbp/

关于css - 如何在悬停时更改文本的不透明度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39266013/

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