<span id="box"></span>
#box{
display:block;
width:10px;
height:100px;
background:gold;
animation:2s ease-in 1s infinite alternate forwards running expansion;
}
@keyframes expansion{
0%{
width:10px;
}
100%{
width:300px;
background:tomato;
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.