الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!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; animation-direction: reverse; } </style> </head> <body> <h1>CSS animation-direction property</h1> <p>This property is used to specify whether an animation should be played forwards, backwards or in alternate cycles.</p> <p>The "reverse" value run the animation backwards.</p> <div></div> </body> </html>