एनीमेशन-दिशा का उपयोग करें एक वैकल्पिक दिशा में एनीमेशन चलाने के लिए संपत्ति। संपत्ति का उपयोग वैकल्पिक एनिमेशन . के साथ किया जाता है इसे प्राप्त करने के लिए मूल्य।
उदाहरण
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 200px; background-color: yellow; animation-name: myanim; animation-duration: 2s; animation-direction: alternate; animation-iteration-count: 3; } @keyframes myanim { from { background-color: green; } to { background-color: blue; } } </style> </head> <body> <div></div> </body> </html>