1
I have the following keyframe:
@keyframes bolha
0% {width: 0px;
height: 0px;}
50% {width: 600px;
height: 600px;}
100% {width: 400px;
height: 400px;}
}
I call him that way:
-webkit-animation: bolha 1s;
The result: Run 1 time the animation and stop at 100% getting static.
I’m a beginner, sorry for the ignorance...
This repetition only occurs if you put
animation: bolha 1s infinite
– Wallace Maxters