You are here : cssCSS 3animation-iteration-count

animation-iteration-count - CSS 3

The animation-iteration-count property specifies the number of times an animation should be played.


Syntax

animation-iteration-count: number|infinite|initial|inherit;


Example

div {    -webkit-animation-iteration-count: 3; /* Chrome, Safari, Opera */   
  
    animation-iteration-count: 3;}


Output / Return Value


Limitations


Alternatives / See Also


Reference