CSS প্রপার্টির নাম ট্রানজিশন ইফেক্ট সেট করতে, CSS transition-property ব্যবহার করুন।
নীচের উদাহরণে, আমরা প্রপার্টিটিকে প্রস্থ হিসাবে সেট করেছি এবং সময়কালও সেট করেছি:
উদাহরণ
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 150px; background: blue; transition-property: width; transition-duration: 3s; } div:hover { width: 250px; } </style> </head> <body> <h1>Heading One</h1> <p>Hover over the below box to change its width.</p> <div></div> </body> </html>