【发布时间】:2017-12-12 14:42:06
【问题描述】:
我想在div 中进行转换:
-
以
background-color:rgba(242, 245, 169, 1);开头... 3 秒后...
-
以
background-color:rgba(242, 245, 169, 0);结尾
并且...在两个fases之间显示background-color:rgba(242, 245, 169, 0.9);,background-color:rgba(242, 245, 169, 0,8);,background-color:rgba(242, 245, 169, 0.7);...
类似于this solution,但没有':hover'。直接。
我怎样才能得到它?
谢谢。
【问题讨论】:
-
你需要使用动画而不是过渡
-
看看关键帧。这就是你想要的。
-
哦,非常感谢!