gpt4 book ai didi

html - CSS-过渡不起作用

转载 作者:太空狗 更新时间:2023-10-29 13:43:35 25 4
gpt4 key购买 nike

大家好我目前正在尝试进行过渡,当您将鼠标悬停时背景变为紫色并且文本颜色变为白色。(最初没有背景颜色并且文本颜色为黑色......)

但它不起作用!

我做错了什么!?

a:hover {
color: white;
-webkit-transition: color 1000ms linear;
-moz-transition: color 1000ms linear;
-o-transition: color 1000ms linear;
-ms-transition: color 1000ms linear;
transition: color 1000ms linear;
background-color: purple;
-webkit-transition: background-color 1000ms linear;
-moz-transition: background-color 1000ms linear;
-o-transition: background-color 1000ms linear;
-ms-transition: background-color 1000ms linear;
transition: background-color 1000ms linear;
}

所以///编辑,因为每个人都告诉我将其添加到 a 而不是 a:hover...

初始状态:

text-color:black;
background:none;

悬停状态:

平滑过渡到:

 text-color:white;
background:black;

希望对大家有所帮助感谢您的宝贵时间!

最佳答案

将它们放在 a(不是悬停)上,如果您想要多个转换,则必须将它们一起声明。

-webkit-transition: color 1000ms linear, background-color 1000ms linear;

http://jsfiddle.net/4zhnP/1/

关于html - CSS-过渡不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19364322/

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