How to make the element be removed at the end of the animation? This does not work:
@keyframes move1 { 0% {height: 0px;} 100% {height: 100px; display: none;} } .moving1 { animation: move1 0.30s ease 1 alternate forwards; } How to make the element be removed at the end of the animation? This does not work:
@keyframes move1 { 0% {height: 0px;} 100% {height: 100px; display: none;} } .moving1 { animation: move1 0.30s ease 1 alternate forwards; } Source: https://ru.stackoverflow.com/questions/743308/
All Articles