CSS animation-directin 属性
使用 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>
广告