@keyframes란 => 타임라인 안의 하나의 스태이지(구간)들
* 0% 시작 => 100% 끝
@keyframes example {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
* from to 로도 사용가능
@keyframes example {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
* to로만 쓸수도 있음
@keyframes example {
to {
opacity: 0;
}
}
animation 속성은 예전에 @keyframes라고 불리며 CSS 선택자 안에서 존재했었습니다.
animation은 여러개의 속성을 가질 수 있습니다.
길게 늘여쓰는 경우
.example {
animation-name: tutsFade;
animation-duration: 4s;
animation-delay: 1s;
animation-iteration-count: infinite;
animation-timing-function: linear;
animation-direction: alternate;
}
짧게 줄여쓰는 경우
.example {
animation: tutsFade 4s 1s infinite linear alternate;
}
@keyframes tutsFade {
from {
opacity: 1;
}
to {
opacity: 0;
}
}