الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> @keyframes example { from { background-color: red; } to { background-color: blue; } } div { width: 100px; height: 100px; background-color: red; animation-name: example; animation-duration: 3s; } </style> </head> <body> <h1>CSS Animation</h1> <p>The animation effect will take 3 seconds to complete.</p> <div class="example"></div> <p>Note: Animation style is temporary. So the element will use its original style after the animation is finished.</p> </body> </html>