الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> @keyframes example { 0% { background-color: orange; } 33% { background-color: red; } 66% { background-color: blue; } 100% { background-color: green; } } div { width: 100px; height: 100px; background-color: green; animation-name: example; animation-duration: 4s; } </style> </head> <body> <h1>CSS Animation</h1> <p>The animation effect will take 4 seconds to complete.</p> <p>The background-color value will change 4 times smoothly during this animation.</p> <div></div> </body> </html>