animation-iteration-count 속성은 애니메이션 재생 횟수를 정의하는 데 사용됩니다. 애니메이션의 무한 루프 재생을 달성하려면 animation-iteration-count 속성 값을 무한으로 설정하세요.
CSS3 animation-iteration-count 속성
기능: animation-iteration-count 속성은 애니메이션이 재생되는 횟수를 정의합니다.
구문:
animation-iteration-count: n|infinite;
n: 애니메이션 재생 횟수를 정의하는 값.
infinite: 애니메이션이 무한히 재생되도록 지정합니다.
참고: Internet Explorer 9 이하 버전은 animation-iteration-count 속성을 지원하지 않습니다.
CSS3 animation-iteration-count 속성 사용 예
애니메이션 루프를 3번 설정
<!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> <div></div> </body> </html>
렌더링:
위는 이 내용의 전체 내용입니다. 기사, 나 모든 분들의 공부에 도움이 되길 바랍니다. 더 흥미로운 내용을 보려면 PHP 중국어 웹사이트의 관련 튜토리얼 열을 주의 깊게 살펴보세요! ! !
위 내용은 animation-iteration-count 속성을 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!