Home > Article > Web Front-end > CSS animated fill mode property
Use the animation-fill-mode attribute to set the style of the element when the animation is not playing.
You can try running the following code to implement the animation-fill-mode attribute
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 200px; position: relative; background: red; animation-name: myanim; animation-duration: 2s; animation-fill-mode: backwards; } @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 CSS animated fill mode property. For more information, please follow other related articles on the PHP Chinese website!