← Volver a la Lección

♾️ Infinite Animations

Continuously looping animations for loaders, ambient effects, and ongoing feedback. These animations run forever.

1. Spinning Loader

Classic loading spinner.

animation:
  spin 1s linear infinite;

2. Heartbeat

Pulsing heart animation.

❤️
animation:
  heartbeat 1.5s
  ease-in-out infinite;

3. Float

Smooth floating effect.

animation:
  float 3s
  ease-in-out infinite;

4. Breathing

Zen-like breathing circle.

animation:
  breathe 2.5s
  ease-in-out infinite;

5. Dot Wave

Staggered dot animation.

.dot:nth-child(n) {
  animation-delay: calc(n * 0.2s);
}

6. Rotating Squares

Rotating group of elements.

animation:
  rotateSquares 3s
  linear infinite;

7. Shimmer

Skeleton loading shimmer effect.

background:
  linear-gradient(...);
animation:
  shimmer 2s linear infinite;

8. Radar Pulse

Expanding rings like a radar.

animation:
  radarPulse 2s
  ease-out infinite;
animation-delay: 0.5s;

💡 Puntos Clave