📜  动画方向属性 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:48:00.092000             🧑  作者: Mango

代码示例1
animation-direction  can have the following values -
(1) normal : forward direction, this is the default value.
(2) reverse : the animation sets in the reverse direction ( backward ).
(3) alternate : the animation plays normal first and then reverse.
(4) alternate-reverse: the animation plays reverse first and then normal.


NOTE: animation-duration also matters in animation-direction.