animation-iteration-count
Sets animation repeat count. aicinf is used for continuous animations like loading spinners and pulse effects.
Class List
| Class | CSS | Description |
|---|---|---|
aicinf | animation-iteration-count: infinite | Infinite loop |
Usage Examples
Commonly used with animation-direction.
<!-- Infinite loading spinner -->
<div class="aicinf adial">
Loading...
</div>
<!-- Infinite pulse effect -->
<div class="aicinf adial">
You have new notifications
</div>Tips
Common use cases
Used for all continuously repeating animations: loading spinners, blinking cursors, pulse effects, background gradient animations, etc.
Performance note
Infinite loop animations can impact performance. Consider pausing animations when not visible on screen.