Use the animation-duration property to set the time it takes for the animation to complete a cycle:
Online demo
<!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>
The above is the detailed content of Set how long it takes for an animation to complete a cycle using CSS. For more information, please follow other related articles on the PHP Chinese website!