CSS를 사용하여 애니메이션을 실행해야 하는 횟수를 설정하려면 animation-iteration-count 속성을 사용하세요.
다음 콘텐츠 예에서는 애니메이션 개수를 2로 설정합니다.
Live 데모
<!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 중국어 웹사이트의 기타 관련 기사를 참조하세요!