Reference/CSS
animation-fill-mode 속성은 애니메이션이 끝난 후의 상태를 설정합니다.
animation-fill-mode
animation-fill-mode 속성은 애니메이션이 끝난 후의 상태를 설정합니다. 애니메이션은 움직임 시간, 움직임 지연 시간, 움직임 방향, 움직임 속도, 움직임 진행상태, 움직임 반복 횟수, 움직임 진행상태, 움직임 속도, 키프레임 이름 등을 설정하여 원하는 애니메이션을 구현 할 수 있습니다.
특징 | 설명 |
---|---|
기본값 | animation-fill-mode : none |
적용 | animation |
버전 | CSS3 |
사용성 | ★★☆☆☆ |
정의(Definition)
- animation-fill-mode 속성은 애니메이션이 끝난 후의 상태를 설정합니다.
애니메이션과 관련된 속성(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-fill-mode : none | forwards | backwards | both | inherit;
/* 애니메이션 끝난 후 설정 */
animation-fill-mode : none;
animation-fill-mode : forwards;
animation-fill-mode : backwards;
animation-fill-mode : both;
/* 애니메이션 속기형 작성법 */
animation: ani 1s 3 backwards; /* keyframe이름, 지속시간, 반복횟수, 끝난 후 상태설정 */
속성(Property)
속성값 | 값(예) | 설명 |
---|---|---|
none | animation-fill-mode : none | 애니메이션이 끝난 후 상태를 설정하지 않습니다. |
forwards | animation-fill-mode : forwards | 애니메이션이 끝난 후 그 지점에 그대로 있습니다. |
backwards | animation-fill-mode : backwards | 애니메이션이 끝난 후 시작점으로 돌아옵니다. |
both | animation-fill-mode : both | 애니메이션이의 앞 뒤 결과를 조합하여 설정합니다. |
inherit | animation-fill-mode : inherit | 애니메이션의 상태를 상위 요소한테 상속받습니다. |
예제1(Sample)
애니메이션이 끝난 후의 상태를 설정하는 예제입니다.
1번 적용 효과 : animation-fill-mode : none;
2번 적용 효과 : animation-fill-mode : forwards;
3번 적용 효과 : animation-fill-mode : backwards;
4번 적용 효과 : animation-fill-mode : both;
2번 적용 효과 : animation-fill-mode : forwards;
3번 적용 효과 : animation-fill-mode : backwards;
4번 적용 효과 : animation-fill-mode : both;
HTML
CSS
SCRIPT
<div class="animation-box">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
.animation-box.show .box:nth-child(1) {animation: move 2s 1 none;}
.animation-box.show .box:nth-child(2) {animation: move 2s 1 forwards;}
.animation-box.show .box:nth-child(3) {animation: move 2s 1 backwards;}
.animation-box.show .box:nth-child(4) {animation: move 2s 1 both;}
@keyframes move {
0% {left: 0%;}
100% {left: calc(100% - 80px);}
}
//Javascript none
호환성(Compatibility)
6 | 7 | 8 | 9 | 10 | 11 | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
animation-fill-mode | ○ | ○ | ○ | ○ | ○ | ❌ | ❌ | ❌ | ❌ | ○ | ○ | ○ | ○ | ○ |
댓글