.text-delay-title {
font-size: 42px;
text-transform: uppercase;
letter-spacing: 3px;
transform: rotate(-10deg);
display: flex;
}
.text-delay-title span {
opacity: 0;
transform: skew(-10deg);
display: block;
text-shadow: 1px 1px rgba(0, 0, 0, 0.4),
2px 2px rgba(0, 0, 0, 0.4),
3px 3px rgba(0, 0, 0, 0.4),
4px 4px rgba(0, 0, 0, 0.4),
5px 5px rgba(0, 0, 0, 0.4),
6px 6px rgba(0, 0, 0, 0.4);
animation: move 0.5s cubic-bezier(0.42, 0, 0.66, 1.45) forwards var(--delay);
}
@keyframes move {
0% {
transform: skew(-10deg) translateY(100%);
opacity: 0;
}
100% {
transform: skew(-10deg) translateY(0);
opacity: 1;
}
}
.text-delay-title:nth-child(1) {
color: #e55643;
}
.text-delay-title:nth-child(2) {
color: #2b9f5e;
}
.text-delay-title:nth-child(3) {
color: #f1c83c;
}嗨!你好
我是你们最爱的
小狐

