I have the following keyframe:
@keyframes bolha
0% {width: 0px;
height: 0px;}
50% {width: 600px;
height: 600px;}
100% {width: 400px;
height: 400px;}
}
I call it this way:
-webkit-animation: bolha 1s;
The result: Run the animation once and stop at 100% getting static.
I'm a beginner, sorry for ignorance ...