الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .btn { color: #fff; text-align: center; background-color: dodgerblue; padding: 20px 15px; cursor: pointer; border-radius: 8px; width: 200px; transition-property: width, background-color; transition-duration: 1s, 3s; } .btn:hover { width: 300px; background-color: blueviolet; } </style> </head> <body> <h2>Set transition duration for each property</h2> <p>Hover over the div element below, to see the transition effect.</p> <div class="btn">Hover Me</div> <p>Note: The width effect will takes 1 second to complete, but the background-color will takes 3 seconds.</p> </body> </html>