HTML Diff
0 added 0 removed
Original 2026-01-01
Modified 2026-03-09
1 <p>In all our previous examples, we created animations that were only played once, then the element was restored to the original state. We can explicitly specify how many times an animation will be played. To do this, use the animation-iteration-count property.</p>
1 <p>In all our previous examples, we created animations that were only played once, then the element was restored to the original state. We can explicitly specify how many times an animation will be played. To do this, use the animation-iteration-count property.</p>
2 <p>It accepts positive integers or zero as input parameters: if the value is zero, the animation will not be played; in all other cases, it will be played the specified number of times.</p>
2 <p>It accepts positive integers or zero as input parameters: if the value is zero, the animation will not be played; in all other cases, it will be played the specified number of times.</p>
3 <p>You can also use the word infinite as a value of the animation-iteration-count parameter. It means that the animation will be played an infinite number of times and will never stop.</p>
3 <p>You can also use the word infinite as a value of the animation-iteration-count parameter. It means that the animation will be played an infinite number of times and will never stop.</p>
4 <p>Let’s try setting different values to this parameter.</p>
4 <p>Let’s try setting different values to this parameter.</p>