الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> @keyframes example { 0% { background-color: red; left: 0; transform: rotateZ(0deg); } 50% { background-color: blue; left: calc(100% - 100px); transform: rotateZ(360deg); } 100% { background-color: red; left: 0; transform: rotateZ(0deg); } } div { width: 100px; height: 100px; border-radius: 10px; background-color: red; position: relative; animation-name: example; animation-duration: 4s; animation-iteration-count: 3; } </style> </head> <body> <h1>CSS animation-iteration-count property</h1> <p>This property specifies the number of times an animation should run.</p> <p>In this example we run the animation 3 times before it stops.</p> <div></div> </body> </html>