CSS 动画方向属性
使用 animation-direction 属性设置动画正向播放、反向播放还是交替循环播放。
可以尝试运行以下代码来实现 animation-direction 属性
示例
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 200px; background-color: yellow; animation-name: myanim; animation-duration: 2s; animation-direction: reverse; } @keyframes myanim { from { background-color: green; } to { background-color: blue; } } </style> </head> <body> <div></div> </body> </html>
广告