Verwenden Sie das Attribut animation-direction, um festzulegen, ob die Animation vorwärts, rückwärts oder abwechselnd in einer Schleife abgespielt wird:
Echtzeitdemonstration
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 200px; background-color: yellow; animation-name: myanim; animation-duration: 2s; animation-direction: reverse; } @keyframes myanim { from { background-color: green; } to { background-color: blue; } } </style> </head> <body> <div></div> </body> </html>
Das obige ist der detaillierte Inhalt vonLegen Sie fest, ob die Animation vorwärts abgespielt wird oder CSS verwendet wird. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!