프론트 폴더 구성
2021. 12. 3. 11:03
Frontend/프론트 라이브러리
components 레이아웃들 base_layout. header. footer pages 각 페이지 provider 공통적인 요소 search button 등
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.모..
CSS) style에 변수처리
2021. 11. 30. 21:45
Frontend/HTML, CSS, DOM, jQuery
규칙 1. -- 로 시작 2. 연결은 -로 해야한다. 3. 사용은 var('이름') 하기