250x250
Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- placeholder-shown:
- a11y
- input password 입력
- CSS
- 특정도값
- PlaceHolder
- Attribute Selectors
- focus-within
- input text javascript
- meta
- 컴퓨터과학과 후기
- 티스토리챌린지
- microsoft designer compact keyboard
- 마이크로소프트 디자이너 컴팩트 키보드
- 엣지 password 눈모양 제거
- 컴퓨터과학과 과목 후기
- input password 입력 바꾸기
- 오블완
- 주민번호 css
- input password javascript
- 한국방송통신대학교 졸업 후기
- password input
- microsoft designer compact keyboard & mouse
- input text placeholder image
- select placeholder
- image Filter
- sr-only
- 마이크로소프트 디자이너 컴팩트 키보드 마우스 세트
- 주민번호 input
- 컴퓨터과학과 교과목 후기
Archives
- Today
- Total
디자인과 개발 그 사이
animation-timing-function: ease, linear, ease-in, ease-out, ease-in-out 비교하기 본문
css
animation-timing-function: ease, linear, ease-in, ease-out, ease-in-out 비교하기
짧은 양다리 2023. 7. 31. 14:00728x90
비교예시
아래의 코드에서는 빨간색 사각형들이 오른쪽으로 200px 이동하는 애니메이션을 사용하여 ease, linear, ease-in, ease-out, ease-in-out 다섯 가지 animation-timing-function 값으로 비교하고 있습니다.
html
<h3>ease</h3>
<div class="box ease"></div>
<h3>linear</h3>
<div class="box linear"></div>
<h3>ease-in</h3>
<div class="box ease-in"></div>
<h3>ease-out</h3>
<div class="box ease-out"></div>
<h3>ease-in-out</h3>
<div class="box ease-in-out"></div>
css
.box {
width: 100px;
height: 100px;
margin: 20px;
background-color: red;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-fill-mode: forwards;
}
.ease {
animation-name: move-ease;
animation-timing-function: ease;
}
.linear {
animation-name: move-linear;
animation-timing-function: linear;
}
.ease-in {
animation-name: move-ease-in;
animation-timing-function: ease-in;
}
.ease-out {
animation-name: move-ease-out;
animation-timing-function: ease-out;
}
.ease-in-out {
animation-name: move-ease-in-out;
animation-timing-function: ease-in-out;
}
@keyframes move-ease {
0% {
transform: translateX(0);
}
100% {
transform: translateX(200px);
}
}
@keyframes move-linear {
0% {
transform: translateX(0);
}
100% {
transform: translateX(200px);
}
}
@keyframes move-ease-in {
0% {
transform: translateX(0);
}
100% {
transform: translateX(200px);
}
}
@keyframes move-ease-out {
0% {
transform: translateX(0);
}
100% {
transform: translateX(200px);
}
}
@keyframes move-ease-in-out {
0% {
transform: translateX(0);
}
100% {
transform: translateX(200px);
}
}
결과
ease
linear
ease-in
ease-out
ease-in-out
1. ease: 기본값인 ease 타이밍 함수를 사용하여 처음에는 느리게 시작하고, 점점 빨라지다가 끝에 가까워질수록 다시 느려지는 효과를 보여줍니다.
2. linear: linear 타이밍 함수를 사용하여 애니메이션을 일정한 속도로 일정하게 진행합니다.
3. ease-in: ease-in 타이밍 함수를 사용하여 처음에는 느리게 시작하고, 점점 빨라지는 효과를 보여줍니다.
4. ease-out: ease-out 타이밍 함수를 사용하여 처음에는 빠르게 시작하고, 점점 느려지는 효과를 보여줍니다.
5. ease-in-out: ease-in-out 타이밍 함수를 사용하여 처음에는 느리게 시작하고, 가속하다가 끝에 가까워질수록 다시 느려지는 효과를 보여줍니다.
728x90
'css' 카테고리의 다른 글
animation-fill-mode: none, forwards, backwards, both 비교하기 (0) | 2023.07.31 |
---|---|
animation-direction: normal, reverse, alternate, alternate-reverse 비교하기 (0) | 2023.07.31 |
css 애니메이션 속성 정리 (0) | 2023.07.31 |
[스위치버튼 만들기] 라디오/체크박스 (0) | 2023.07.25 |
input 체크박스/라디오 스타일 커스텀 하기, 꾸미는 법 (0) | 2023.07.25 |