Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- const 단언문
- 티스토리꾸미기
- TSDoc
- 2022
- vue.js
- 폰트적용하기
- click and drag
- 타입스크립트
- 반복줄이기
- 개발콘텐츠
- CSS
- utilty type
- 커스텀
- React Native
- react
- 레이아웃쪼개기
- 성능최적화
- javascript
- NonNullable
- React.js
- returnType
- 공통컴포넌트
- 타입좁히기
- reactjs
- typescript
- 리액트
- 누구나 자료구조와 알고리즘
- Chart.js
- 제네릭
- JS console
Archives
- Today
- Total
몽땅뚝딱 개발자
[CSS] animation과 keyframe 본문
◽ animation
- frame by frame animation은 gif를 사용하면 이미지 깨짐현상 등으로 의도한대로 노출되지 않을 수 있다. 애니메이션을 CSS로 구현하면 커스텀이 쉽다.
@keyframes dot {
0% {
opacity: 0.2;
}
25% {
opacity: 1;
}
50% {
opacity: 0.2;
}
100% {
opacity: 0.2;
}
}
/* linear: 일정한 속도 */
/* alternate: 반복하기 */
/* reverse: 반대로 시작 */
/* alternate-reverse: 반대로시작해서 반복 */
/* forwards: 애니메이션이 끝난 위치에서 끝남 */
/* steps: 애니메이션을 17단계로 자름 */
.dot {
animation: dot 1s infinite linear alternate;
animation: dot 1s infinite linear reverse;
animation: dot 1s infinite linear alternate-reverse;
animation: dot 1s infinite linear forwards;
animation: dot 1s infinite steps(17);
}
/* running: 기본값 */
/* paused: hover 시 중지된다. */
.dot:hover {
animation-play-state: paused;
}
◽ @keyframes
@keyframes dot {
0% {
opacity: 0.2;
}
100% {
opacity: 0.2;
}
}
/* from: 시작 */
/* to: 끝 */
@keyframes dot {
from {
opacity: 0.2;
}
to {
opacity: 0.2;
}
}
출처
'Development > HTML · CSS' 카테고리의 다른 글
[CSS] 토스트를 만드는 5가지 방법 (0) | 2023.04.18 |
---|---|
[CSS] 3D (0) | 2023.03.28 |
[CSS] Transition (0) | 2023.03.27 |
[CSS] Transform (0) | 2023.03.27 |
[HTML/CSS] 이런 방법도 있었네! + 미세팁 (0) | 2023.03.25 |
Comments