CSS-এর সাথে শুরু থেকে শেষ পর্যন্ত একই গতিতে অ্যানিমেশন সেট করতে লিনিয়ার মান সহ অ্যানিমেশন-টাইমিং-ফাংশন বৈশিষ্ট্য ব্যবহার করুন
উদাহরণ
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 200px; position: relative; background-color: yellow; 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: linear;} </style> </head> <body> <div id = "demo">linear effect</div> </body> </html>