gpt4 book ai didi

javascript - 如何在css中的特定时间改变颜色?

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

如何在CSS中在特定时间改变颜色?
例如,我想在特定时间更改段落颜色。

<style>
p {
color: black;
}
</style>
<p>I want to be white!</p>

谢谢。

更新:
对于这句话,我的意思是 1 秒

in a specific time

最佳答案

带有动画

 p {
color: black;
animation:animate .1s linear forwards;
animation-delay:5s; /* text will be red after 5 second */
}

@keyframes animate {
to {color:red}
}
<p>I want to be red!</p>

关于javascript - 如何在css中的特定时间改变颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53980365/

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