18 Animation & Multi Columns(다단)
1. Animation(애니메이션) 개요 - 단축
.box{ aniation: 애니메이션이름 지속시간 [타이밍함수 대기시간 반복횟수 전후상태 재생/정지]; animation: hello 2s linear infinite both; } @keyframes hello{ 0%{width: 200px;} 100%{width: 50px;} }
1.1 @keyframes-rules
1.3 animation-duration
1.4 animation-timing-function
1.5 animation-delay
1.6 animation-iteration-count
1.7 animation-direction
1.8 animation-fill-mode
1.9-animation-play-state
2. 다단(Multi Comlumns)
Last updated