취업 준비/웹 4

Advanced CSS

transitions hover 와 같은 효과 active해지거나 click되는 효과같은것 animations 이미 customized된 애니메이션 transformations 크기가 커지거나, 회전하거나, 움직이거나 ease-in-out : 서서히 변함 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 body, html { height: 100%; padding: 0%; margin: 0%; } .box { background-color: green; color: whitesmoke; font-size: 60px; transition: all 0.5s ease-in-out; } .box:focus { background-color: blue; color: red; } http..

취업 준비/웹 2020.05.15