एनिमेशन-टाइमिंग-फ़ंक्शन का उपयोग करें संपत्ति, सीएसएस के साथ धीमी गति से एनीमेशन सेट करने के लिए आसान मूल्य के साथ
उदाहरण
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 150px;
height: 200px;
position: relative;
background-color: #808000;
animation-name: myanim;
animation-duration: 2s;
animation-direction: alternate-reverse;
animation-iteration-count: 3;
}
@keyframes myanim {
from {left: 100px;}
to {left: 200px;}
}
#demo {animation-timing-function: ease-out;}
</style>
</head>
<body>
<div id = "demo">ease-out effect</div>
</body>
</html>