(새 문서: →# 등장 애니메이션: .ZCA-maintext { opacity: 0; animation: ZCA-maintext; animation-iteration-count: 1; animation-duration: 1s; animation-delay: 0.9s; animation-...) |
편집 요약 없음 |
||
17번째 줄: | 17번째 줄: | ||
} | } | ||
.ZCA-subtext { | .ZCA-subtext1 { | ||
opacity: 0; | |||
animation: ZCA-subtext; | |||
animation-iteration-count: 1; | |||
animation-duration: 1s; | |||
animation-delay: 0s; | |||
animation-fill-mode: forwards; | |||
transition: .2s ease; | |||
transform: translateX(0%); | |||
} | |||
.ZCA-subtext2 { | |||
opacity: 0; | opacity: 0; | ||
animation: ZCA-subtext; | animation: ZCA-subtext; | ||
23번째 줄: | 34번째 줄: | ||
animation-duration: 1s; | animation-duration: 1s; | ||
animation-delay: 0.5s; | animation-delay: 0.5s; | ||
animation-fill-mode: forwards; | |||
transition: .2s ease; | |||
transform: translateX(0%); | |||
} | |||
.ZCA-subtext3 { | |||
opacity: 0; | |||
animation: ZCA-subtext; | |||
animation-iteration-count: 1; | |||
animation-duration: 1s; | |||
animation-delay: 1s; | |||
animation-fill-mode: forwards; | animation-fill-mode: forwards; | ||
transition: .2s ease; | transition: .2s ease; |
2023년 9월 30일 (토) 10:20 판
/* # 등장 애니메이션 */
.ZCA-maintext {
opacity: 0;
animation: ZCA-maintext;
animation-iteration-count: 1;
animation-duration: 1s;
animation-delay: 0.9s;
animation-fill-mode: forwards;
transition: .2s ease;
transform: translateY(0%);
}
@keyframes ZCA-maintext {
from {opacity: 0; transform: translateY(-20%);}
to {opacity: 1; transform: translateY(0%);}
}
.ZCA-subtext1 {
opacity: 0;
animation: ZCA-subtext;
animation-iteration-count: 1;
animation-duration: 1s;
animation-delay: 0s;
animation-fill-mode: forwards;
transition: .2s ease;
transform: translateX(0%);
}
.ZCA-subtext2 {
opacity: 0;
animation: ZCA-subtext;
animation-iteration-count: 1;
animation-duration: 1s;
animation-delay: 0.5s;
animation-fill-mode: forwards;
transition: .2s ease;
transform: translateX(0%);
}
.ZCA-subtext3 {
opacity: 0;
animation: ZCA-subtext;
animation-iteration-count: 1;
animation-duration: 1s;
animation-delay: 1s;
animation-fill-mode: forwards;
transition: .2s ease;
transform: translateX(0%);
}
@keyframes ZCA-subtext {
from {opacity: 0; transform: translateX(-2%);}
to {opacity: 1; transform: translateX(0%);}
}