📜  动画计时函数css代码示例

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

代码示例3
animation-timing-function: ease; /*increase speed toward middle then slow to end */
animation-timing-function: ease-in;/*start slow increase speed till end*/
animation-timing-function: ease-out;/*start quick decrease speed till end*/
animation-timing-function: ease-in-out;/*start slow, speeding up, decrease speed till end*/
animation-timing-function: linear;/*animates at an even speed.*/