使用animation-duration属性来设置动画完成一个循环所需的时间:
在线演示
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 200px; position: relative; background: red; animation-name: myanim; animation-duration: 2s; } @keyframes myanim { from {left: 0px; background-color: green;} to {left: 200px; background-color: blue;} } </style> </head> <body> <div> </div> </body> </html>
以上是使用 CSS 设置动画完成一个周期所需的时间的详细内容。更多信息请关注PHP中文网其他相关文章!