STUDY

[ANIMATION] animation 속성

꿀떡최고 2021. 11. 22. 15:38
반응형

animation: name | duration | timing-function | delay | iteration-count | direction | fill-mode | play-state

 

 

 

사용할 수 없는 animation-name

animation-name: 5name /* 숫자로 시작하는 경우 */
animation-name: #name /* 특수 문자로 시작하는 경우 */

 

 

animation-direction

- normal: 순방향으로 재생하며, 한 번 끝나면 첫 번째부터 다시 시작

- alternate: 순방향과 역방향 번갈아 재생

- reverse: 역방향으로 재생하며, 한 번 끝나면 마지막부터 다시 시작

- alternate-reverse: 역방향과 순방향 번갈아 재생

 

 

 

animation 끝에 정지

animation-fill-mode: both;
반응형

'STUDY' 카테고리의 다른 글

[Angular] 프로젝트 시작, props, emit  (0) 2022.02.05
[axios] axios에 header 넣기  (0) 2021.11.24
[:nth-child] :nth-child 활용  (0) 2021.11.20
[오류 해결] backface-visibility: hidden  (0) 2021.11.17
[SQL] HAVING과 WHERE의 차이  (0) 2021.11.16