Posts /

CSS:animation-fill-mode

Twitter Facebook Google+
30 Nov 2018
div {
    animation-fill-mode: forwards;
}

CSS :animation-fill-mode

animation-fill-mode속성은 애니메이션이 재생되지 않을 때 (시작 전, 끝나기 전에 또는 둘 다) 요소의 스타일을 지정합니다.

CSS 애니메이션은 첫 번째 키 프레임이 재생되거나 마지막 키 프레임이 재생 된 후에 요소에 영향을주지 않습니다. animation-fill-mode속성은이 동작을 재정의 할 수 있습니다.

브라우저 지원

| property | 크롬 | IE | 파이어폭스 | 사파리 | 오페라 | |:——–|:——–:|:——–:|:——–:|:——–:|:——–:| | animation | 43.0, 4.0 -webkit- | 10.0 | 16.0, 5.0 -moz- | 9.0, 4.0 -webkit- | 30.0, 15.0 -webkit-, 12.0 -o- |

속성

animation-fill-mode: none|forwards|backwards|both|initial|inherit;


Twitter Facebook Google+