Skip to content

Animation Iteration Count

ClassProperties
animate-infiniteanimation-iteration-count: infinite;
animate-repeat-[n]animation-iteration-count: n;

Here [n] is one of number. You can also use arbitrary values instead.

Examples

html
<div class="animated animated-bounce animated-infinite">Foo</div>
<div class="animated animated-bounce animated-repeat-6">Bar</div>
<div class="animated animated-bounce animated-repeat-666">Baz</div>

Released under the MIT License.