gpt4 book ai didi

javascript - 全局颜色不透明度悬停叠加?

转载 作者:行者123 更新时间:2023-11-30 13:20:32 27 4
gpt4 key购买 nike

我正在使用下面的全局链接不透明度覆盖。

a:hover {
text-decoration: none; opacity: 0.6; /* css standard */
filter: alpha(opacity=60); /* internet explorer */
} /* mouse over link */

我如何给它添加颜色?这可以用 CSS 实现还是我只看 JS/jQuery 解决方案?

最佳答案

如果你想要颜色,例如黑色在背景上那么你的代码将是

a:hover {text-decoration: none;  opacity: 0.6; /* css standard */
filter: alpha(opacity=60); /* internet explorer */ /* mouse over link */ background: #000; }

如果您希望 a 标签的颜色为黑色,那么您的 css 将如下所示

a:hover {text-decoration: none;  opacity: 0.6; /* css standard */
filter: alpha(opacity=60); /* internet explorer */ /* mouse over link */ color: #000; }

出于某种原因,您的代码中有一个额外的}

关于javascript - 全局颜色不透明度悬停叠加?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10375245/

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