एनिमेशन-भरने-मोड का उपयोग करें जब एनीमेशन नहीं चल रहा हो तो तत्व के लिए एक शैली सेट करने के लिए संपत्ति।
एनीमेशन-फिल-मोड प्रॉपर्टी को लागू करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं
उदाहरण
<!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>