When you click a window pops up, the window crashes, but then again comes to the place
@keyframes blocks-main { 0%{ top: -625px; } 40%{ top: -625px; } 70%{ top: -625px; } 100%{ top: 0; } }
animation settings
animation: blocks-main .5s;
The animation loses once, reaches 100% and again to zero, and the block goes away, because top:-625px;
How to make the animation stop at 100%?