CSS animation-iteration-count 속성은 애니메이션 재생 횟수를 정의하는 데 사용됩니다. animation-iteration-count 속성 값을 무한으로 설정하면 애니메이션의 무한 루프 재생이 가능합니다.
CSS animation-iteration-count 속성을 어떻게 사용하나요?
기능: animation-iteration-count 속성은 애니메이션이 재생되는 횟수를 정의합니다.
구문:
animation-iteration-count: n|infinite;
설명: n 애니메이션 재생 횟수를 정의합니다. Infinite는 애니메이션이 무한히 재생되어야 함을 지정합니다.
참고: Internet Explorer 9 이하 버전은 animation-iteration-count 속성을 지원하지 않습니다.
css animation-iteration-count 속성 사용 예
<!DOCTYPE html> <html> <head> <style> div { width:100px; height:100px; background:red; position:relative; animation:mymove 3s; animation-iteration-count:3; /* Safari and Chrome */ -webkit-animation:mymove 3s; -webkit-animation-iteration-count:3; } @keyframes mymove { from {top:0px;} to {top:200px;} } @-webkit-keyframes mymove /* Safari and Chrome */ { from {top:0px;} to {top:200px;} } </style> </head> <body> <p><strong>注释:</strong>Internet Explorer 9 以及更早的版本不支持 animation-iteration-count 属性。</p> <div></div> </body> </html>
효과:
위 내용은 CSS animation-iteration-count 속성을 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!