+ 1
How do i play then repeat a css animation?
<div id="div"></div> #div{ width:10px; height:10px; animation:example 2s ease-in 0s 1 normal;} @keyframes example{ from{height:10px;} to{height:100px;}} how do i make this animation play once then repeat once in "reverse" direction with js?
3 Respostas
+ 10
replace "normal" in animation with "infinite". no js needed.
this is how you do reverse:
@keyframes example {
0%,100%{ height:0 0 10px ; }
50%{ height:0 0 100px ; }
}
0
infinite