CSS3에서는 애니메이션을 한 번만 구현할 수 있는 것이 아니라 "animation-iteration-count" 속성을 사용하여 애니메이션 재생 횟수를 정의할 수 있습니다. 속성 값을 무한으로 설정하면 재생 횟수가 무제한이 됩니다. 구문은 "animation-iteration-count: 재생 횟수"입니다.
이 튜토리얼의 운영 환경: Windows 10 시스템, CSS3&&HTML5 버전, Dell G3 컴퓨터.
css3는 하나의 애니메이션만 구현할 수 없나요?
애니메이션 반복 횟수를 사용하세요.
animation-iteration-count 속성은 애니메이션이 재생되어야 하는 횟수를 정의합니다. 기본값은 1입니다.
Syntax
animation-iteration-count: value;
n 애니메이션을 몇 번이나 재생해야 하는지 정의하는 숫자
infinite는 애니메이션이 무한히(영원히) 재생되어야 함을 지정합니다.
예는 다음과 같습니다.
<html> <head> <meta charset="utf-8"> <title>123</title> <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 及更早 IE 版本浏览器不支持 animation-iteration-count 属性。</p> <div></div> </body> </html>
출력 결과:
(학습 영상 공유: css 영상 튜토리얼)
위 내용은 CSS3에서는 애니메이션을 한 번만 구현할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!