如何在CSS中的特定时间更改颜色?

时间:2018-12-30 18:37:56

标签: javascript html css html5 css3

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

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

谢谢。

更新:
我的意思是说这句话例如1秒

  

在特定时间

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>