ऐनिमेशन-फिल-मोड प्रॉपर्टी का उपयोग ऐनिमेशन नहीं चलने पर एलीमेंट के लिए स्टाइल सेट करने के लिए करें
उदाहरण
<!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>