Animation Iteration Count
Class | Properties |
---|---|
animate-infinite | animation-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>