Animation
[html / css] CSS 애니메이션 변화 시간 설정
transition-duration hover, focus 등의 css 변경 시 정적으로 변경하는 것에 animation을 추가하여 동적으로 표시할 수 있음. 1 2 3 4 5 6 7 .testBox{ color : blue; transition-duration : 0.3s; } .testBox:hover{ color : red; } cs > hover 시 글 색이 blue 에서 red 로 0.3초동안 animation이 적용되어 변경됨