这是我的代码:
<font color=green>
14:00
</font><br>
<font color=green>
14:30
</font><br>
<font color=green>
15:00
</font><br>
........
经过一段时间后,如何更改每个文本的颜色(红色)?
我已经尝试过这段代码,但显然它不起作用(onLoad
仅适用于 body/img 标签):
<font color=green onLoad="setTimeout('this.style.color=red',xxx-seconds);">
14:00
</font><br>
有什么建议么?
采用的解决方案(感谢 minitech):
<style>
@keyframes change {
from { color: green }
to { color: red }
}
</style>
<span style='animation: change (number-of-seconds)s step-end both;'>
14:30
</span>
<span style='animation: change (number-of-seconds)s step-end both;'>
15:00
</span>
.............