>  기사  >  웹 프론트엔드  >  CSS animation-iteration-count 속성을 사용하는 방법

CSS animation-iteration-count 속성을 사용하는 방법

藏色散人
藏色散人원래의
2019-05-29 09:22:553850검색

CSS animation-iteration-count 속성은 애니메이션 재생 횟수를 정의하는 데 사용됩니다. animation-iteration-count 속성 값을 무한으로 설정하면 애니메이션의 무한 루프 재생이 가능합니다.

CSS 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 속성을 사용하는 방법

위 내용은 CSS animation-iteration-count 속성을 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.