如何在特定时间内在CSS中更改颜色?
例如,我想在特定时间更改段落颜色。
<style>
p {
color: black;
}
</style>
<p>I want to be white!</p>
谢谢。
更新:
我的意思是说这句话例如1秒
在特定时间
答案 0 :(得分:0)
与animation
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>