Heim >Web-Frontend >CSS-Tutorial >CSS-Eigenschaft für den animierten Füllmodus
Verwenden Sie das Attribut animation-fill-mode, um das Element zu formatieren, wenn die Animation nicht abgespielt wird.
Sie können versuchen, den folgenden Code auszuführen, um das Attribut animation-fill-mode
<!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>zu implementieren
Das obige ist der detaillierte Inhalt vonCSS-Eigenschaft für den animierten Füllmodus. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!