الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!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; } .btn:hover { width: 300px; background-color: blueviolet; } </style> </head> <body> <h2>Add transition effect to multiple properties</h2> <p>Hover over the div element below, to see the transition effect.</p> <div class="btn">Hover Me</div> <p>Note: The transition effect will take 1 second to complete.</p> </body> </html>