✅ 문법 : { transition: property, timing-function, duration, delay}
▪ property: transition을 적용시킬 속성을 정한다.
- all : 모든 속성에 적용한다.
- property : 속성을 정한다. 여러 개일 경우 쉼표로 구분한다.
ex) transition-property: width, background-color;
▪ timing-function : transition의 진행 속도를 조절한다.
ease, linear, ease-in/out 등이 있다.
▪ delay : transition이 시작하는 시간을 연기할 수 있다.
시간 단위는 초(s) 또는 1/1000초(ms) 를 사용한다.
ex) transtion-delay: 0.5s;
'CSS' 카테고리의 다른 글
6. :hover 작동하지 않는 경우 (0) | 2021.08.19 |
---|---|
5. CSS 를 이용해 버튼을 누르면 화면이 바뀌게 하기 (0) | 2021.08.18 |
4. position / display (0) | 2021.08.15 |
3. margin vs. padding / border vs. outline (0) | 2021.08.15 |
2. 중앙 정렬하기 (0) | 2021.08.15 |