css-动画
1.定义
1 | //第一种方法 只有起始帧和结束帧2个动作,中间自动补帧 |
2.调用
infinite: 无线循环动画
alternate: 反向,来回执行动画
forwards: 动画结束停留在最后一帧状态
linear: 动画匀速运行
暂停动画
1 | animation-play-state: paused; |
逐帧动画 (CSS默认为补间动画)
1 | animation: steps() |
多组动画使用逗号隔开
1 | animation: action,action2 |
动画效果脱标,不影响布局
- Title: css-动画
- Author: WGenji
- Created at : 2024-08-26 13:51:51
- Updated at : 2024-08-26 13:51:51
- Link: https://redefine.ohevan.com/2024/08/26/1.css/动画(animation)/
- License: This work is licensed under CC BY-NC-SA 4.0.