1
I’m doing a loading screen and at the end of the effect, the css value that should be maintained, is the value that is in 100% of the Animation, only when the effect ends, it goes back to the initial css.
How do I perform the effect and maintain the value that is in 100%?
Css:
.loading_home_logo {
position: absolute;
right: 0px;
top: -70px;
animation: move-logo 4s;
}
@keyframes move-logo {
0% {
right: inherit;
top: -10vh
}
50% {
top: -40vh;
left: 50%;
}
100% {
top: -50vh;
right: inherit;
left: 0;
}
}