एनिमेशन-फ़िल-मोड का उपयोग करें दोनों . के मान वाली संपत्ति एनिमेशन गुणों को दोनों दिशाओं में विस्तारित करने के लिए।
उदाहरण
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 200px; position: relative; background: red; animation-name: myanim; animation-duration: 2s; animation-fill-mode: both; } @keyframes myanim { from {left: 0px; background-color: green;} to {left: 200px; background-color: blue;} } </style> </head> <body> <div></div> </body> </html>