728x90
Animation
.animation {
animation-name: changeWidth; /* 임의로 작성가능 */
animation-duration: 3s;
animation-timing-function: linear;
animation-delay: 1s;
animation-iteration-count: 6;
animation-direction: alternate;
}
@keyframes changeWidth { /* 내가 설정한 animation 이름 */
from { width: 300px; } /* animation을 통해 변화할 결과값(시작지점) */
to { width: 600px; } /* animation을 통해 변화할 결과값(끝지점) */
}
iteration-count
- 애니메이션 반복 횟수
direction
- 애니메이션 진행 방향
- alternate: from -> to -> from
- normal : from -> to, from -> to
- reverse: to -> from, to -> from
728x90
반응형
'Front-End' 카테고리의 다른 글
[CSS] 미디어쿼리(Media Query)란? / 주의사항 (0) | 2023.03.01 |
---|---|
[CSS] Transform 과 Animation을 결합할 때 주의사항 (0) | 2023.03.01 |
[CSS3] Transition 속성 (0) | 2023.03.01 |
[HTML/CSS] 웹사이트를 재미있게 만드는 CSS3의 transform 속성들 (0) | 2023.03.01 |
[HTML/CSS] 레이아웃에 영향을 미치는 속성 (0) | 2023.02.27 |