使用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中文網其他相關文章!