الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> @keyframes example { from { background-color: red; left: 0; transform: rotateZ(0deg); } to { background-color: blue; left: calc(100% - 100px); transform: rotateZ(360deg); } } div { width: 100px; height: 100px; border-radius: 10px; position: relative; animation-name: example; animation-duration: 4s; animation-direction: alternate; animation-iteration-count: infinite; } div:hover { animation-play-state: paused; } </style> </head> <body> <h1>CSS animation-play-state Property</h1> <p>This property is used to specify whether the animation is running or paused.</p> <p>The "paused" value paused the animation.</p> <div></div> <p>Hover over the element to make it stop.</p> </body> </html>