본문 바로가기

Webstoryboy

Category

Explanation

CSS/Alphabet

animation-iteration-count

animation-iteration-count

animation-iteration-count 속성은 애니메이션 반복 횟수 설정합니다.
애니메이션은 움직임 시간, 움직임 지연 시간, 움직임 방향, 움직임 속도, 움직임 진행상태, 움직임 반복 횟수, 움직임 진행상태, 움직임 속도, 키프레임 이름 등을 설정하여 원하는 애니메이션을 구현 할 수 있습니다.


animation-iteration-count

animation-iteration-count 속성은 애니메이션 반복 횟수 설정합니다.

특징 설명
기본 값 animation-iteration-count : none;
적용 animation
버전 CSS3
사용성 ★★★★☆

정의(Definition)

  • animation-iteration-count 속성은 애니메이션 반복 횟수 설정합니다.

애니메이션과 관련된 속성(Animation Related Properties)

  • animation 속성은 애니메이션과 관련된 속성을 일괄적으로 설정합니다.
  • animation-delay 속성은 애니메이션 지연 시간을 설정합니다.
  • animation-direction 속성은 애니메이션 움직임 방향을 설정합니다.
  • animation-duration 속성은 애니메이션 움직임 시간을 설정합니다.
  • animation-fill-mode 속성은 애니메이션이 끝난 후의 상태를 설정합니다.
  • animation-iteration-count 속성은 애니메이션 반복 횟수를 설정합니다.
  • animation-name 속성은 애니메이션 keyframe 이름을 설정합니다.
  • animation-play-state 속성은 애니메이션 진행상태를 설정합니다.
  • animation-timing-function 속성은 애니메이션 움직임의 속도를 설정합니다.

문법(Syntax)

animation-iteration-count : number | infinite | inherit;

/* 애니메이션 반복 횟수 */
animation-iteration-count : 1; //한번 재생
animation-iteration-count : 1.5; //소수점도 가능
animation-iteration-count : infinite; //무한 반복
animation-iteration-count : 2, 0, infinite; //다중 속성 가능

/* 애니메이션 속기형 작성법 */
animation: ani 1s 3;  /* keyframe이름, 지속시간, 반복횟수 */
animation: ani 1s 1s 3;  /* keyframe이름, 지속시간, 지연시간, 반복횟수 */

속성(Property)

속성값 설명
number 애니메이션 반복 횟수를 숫자를 통해 설정합니다.
infinite 애니메이션 반복 횟수를 무한으로 설정합니다.
inherit 애니메이션 속성을 상속받습니다.

예제1(Sample)

애니메이션 반복 횟수 예제입니다.
HTML
CSS
SCRIPT
<div class="animation-box">
    <div class="box"></div>
    <div class="box"></div>
    <div class="box"></div>
</div>
.animation-box.show1 .box {animation: move 2s 1;}
.animation-box.show2 .box {animation: move 2s 2;}
.animation-box.show3 .box {animation: move 2s 3;}
.animation-box.show4 .box {animation: move 2s 4;}
.animation-box.show5 .box {animation: move 2s infinite;}

@keyframes move {
    0%   {left: 0%;}
    50%  {left: calc(100% - 80px);}
    100% {left: 0%;}
}
//Javascript none

호환성(Compatibility)

크롬 아이콘 파이어폭스 아이콘 사파리 아이콘 오페라 아이콘 네이버 웨일 익스플로러6 아이콘6 익스플로러7 아이콘7 익스플로러8 아이콘8 익스플로러9 아이콘9 익스플로러10 아이콘10 익스플로러11 아이콘11 엣지 아이콘 안드로이드 아이콘 ios 아이콘
animation-iteration-count

참고 사이트(Reference)


더보기

인스타그램 보기 바로가기

포트폴리오 스터디 바로가기

유튜브 영상보기 바로가기