使用 animation-iteration-count 屬性設定動畫應使用 CSS 執行的次數。
以下內容範例將動畫計數設定為 2:
現場示範
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 200px; background-color: yellow; animation-name: myanim; animation-duration: 2s; animation-iteration-count: 2; } @keyframes myanim { from { background-color: green; } to { background-color: blue; } } </style> </head> <body> <div> </div> </body> </html>
以上是設定動畫應使用 CSS 運行多少次的詳細內容。更多資訊請關注PHP中文網其他相關文章!