CSS)Animation
2021. 12. 11. 20:49
Frontend/HTML, CSS, DOM, jQuery
1번 2번 참고 사이트 https://animista.net/
CSS) Transform
2021. 12. 11. 20:33
Frontend/HTML, CSS, DOM, jQuery
참고 사이트 https://developer.mozilla.org/ko/docs/Web/CSS/transform
grid item 움직이기
2021. 12. 7. 21:51
Frontend/HTML, CSS, DOM, jQuery
https://www.google.com/amp/s/www.hongkiat.com/blog/moving-css-grid-items/amp/
CSS) Transition
2021. 11. 30. 22:00
Frontend/HTML, CSS, DOM, jQuery
a{ color:white; background-color: tomato; text-decoration: none; padding:3px 5px; border-radius:5px; font-size:55px; /* transition:background-color 2s ease-in-out, color 2s ease-in-out; */ transition:all 2s ease-in-out; } a:hover{ border-radius:25px; color:tomato; background-color: wheat; } website 트랜지션 규칙 1. 복수 처리는 , 를 사용 ex) transition:background-color 2s ease-in-out, color 2s ease-in-out; 2.모..