Animating Letters

How would I have my letters stay out of view until the animation bring them into view? https://codepen.io/ReallPanda_/pen/ZERoBvd
6 Replies
Myndi
Myndi2y ago
What do you mean exactly? :o Oh, I think I get it. You want the letters to not exist in the visible realm, and only appear when brought by the animation? Change the @keyframes and .letter to this:
.letter {
translate: 0% -100%;
tranform-origin: bottom;
}

@keyframes LettersIn {
100% {
translate: 0%;
}
}
.letter {
translate: 0% -100%;
tranform-origin: bottom;
}

@keyframes LettersIn {
100% {
translate: 0%;
}
}
I just added the relevant, the rest stays the same.
★𝖕𝖆𝖓𝖉𝖆☆
this seems to make them go back down after the animation is done
Myndi
Myndi2y ago
Forgot this line, sorry. I will just paste it full.
.letter {
display: inline-block;
animation: LettersIn 3s ease forwards;
animation-delay: calc(var(--n) * 1s);
translate: 0% -100%;
}

@keyframes LettersIn {
100% {translate: 0%;}
}
.letter {
display: inline-block;
animation: LettersIn 3s ease forwards;
animation-delay: calc(var(--n) * 1s);
translate: 0% -100%;
}

@keyframes LettersIn {
100% {translate: 0%;}
}
★𝖕𝖆𝖓𝖉𝖆☆
ahh i see, thank you! was banging my head for awhile on how to do this lol
Myndi
Myndi2y ago
Although the transform-origin would do nothing in this case. Just change the +- value of the 100% to change the position where it comes from.
Want results from more Discord servers?
Add your server