الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> @keyframes example { from { left: 10px; background-color: red; transform: rotateZ(0deg); } to { background-color: blue; left: calc(100% - 110px); transform: rotateZ(360deg); } } div { width: 100px; height: 100px; position: relative; border-radius: 10px; background-color: red; animation-name: example; animation-duration: 2s; animation-direction: alternate; animation-iteration-count: infinite; } </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 "alternate" value run the animation forwards then backwards.</p> <div></div> </body> </html>