एनीमेशन-दिशा का उपयोग करें एनीमेशन को विपरीत दिशा में चलाने के लिए संपत्ति। संपत्ति का उपयोग रिवर्स . के साथ किया जाता है इसे हासिल करने के लिए एनिमेशन वैल्यू।
उदाहरण
<!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>