Pulsar

Recovery

CSS

A timeline graph shows a downward drop, followed by a vertical recovery tick that sweeps across to restore normal status.

Tier
CSS
Dependencies
None
Duration
5.5 s, loops
Categories
Icons and micro-interactions
Use cases
Success and confirmation, Dashboards and reporting
Industries
IT services and infrastructure, Cross-industry
Style
Technical · light stroke
Set
failover
Tags
chartlineloopprogresswipe

Companion assets

The same artwork, not animated. Derived from the entry’s own resting state, so it matches exactly.

Animated
CSS tier
Static vector
Recovery, not animated
Download SVG

Code

animation.svg

<svg xmlns="http://www.w3.org/2000/svg" fill="none" aria-hidden="true" class="pulsar pulsar-failover-recovery" data-pulsar="failover-recovery" viewBox="0 0 160 96"><g stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" opacity=".3"><line x1="20" x2="142" y1="78" y2="78" stroke-width="1.5" opacity=".7"></line><line x1="20" x2="20" y1="18" y2="78" stroke-width="1.5" opacity=".7"></line><line x1="20" x2="142" y1="34" y2="34" stroke-dasharray="2 4"></line><line x1="20" x2="142" y1="56" y2="56" stroke-dasharray="2 4"></line></g><path id="failover-recovery-dip" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20 34h34l12 32h20"></path><path id="failover-recovery-curve" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m86 66 12-32h44"></path><line id="failover-recovery-needle" x1="86" x2="86" y1="20" y2="76" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="2 2" stroke-width="1.5"></line><circle id="failover-recovery-beacon" cx="98" cy="34" r="3.5" fill="var(--pulsar-accent, currentColor)"></circle><circle id="failover-recovery-ring" cx="98" cy="34" r="8" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.2"></circle></svg>

animation.css

.pulsar-failover-recovery #failover-recovery-needle {
  animation: failover-recovery-sweep 5500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes failover-recovery-sweep {
  0%,
  25% {
    transform: translateX(-40px);
    opacity: 0;
  }
  35% {
    opacity: 1;
    transform: translateX(0);
  }
  55%,
  80% {
    opacity: 1;
    transform: translateX(44px);
  }
  90%,
  100% {
    opacity: 0;
    transform: translateX(56px);
  }
}

.pulsar-failover-recovery #failover-recovery-curve {
  animation: failover-recovery-curve-anim 5500ms ease-in-out infinite;
}

@keyframes failover-recovery-curve-anim {
  0%,
  34% {
    opacity: 0.2;
    stroke-dasharray: 2 4;
  }
  46%,
  82% {
    opacity: 1;
    stroke-dasharray: 0;
  }
  92%,
  100% {
    opacity: 0.2;
    stroke-dasharray: 2 4;
  }
}

.pulsar-failover-recovery #failover-recovery-beacon {
  animation: failover-recovery-beacon-anim 5500ms ease-in-out infinite;
}

@keyframes failover-recovery-beacon-anim {
  0%,
  36% {
    opacity: 0.2;
    transform: scale(0.6);
  }
  48%,
  80% {
    opacity: 1;
    transform: scale(1.3);
  }
  90%,
  100% {
    opacity: 0.2;
    transform: scale(0.6);
  }
}

.pulsar-failover-recovery #failover-recovery-ring {
  transform-origin: 98px 34px;
  animation: failover-recovery-ring-anim 5500ms ease-out infinite;
}

@keyframes failover-recovery-ring-anim {
  0%,
  42% {
    opacity: 0;
    transform: scale(0.5);
  }
  50%,
  78% {
    opacity: 0.8;
    transform: scale(1.4);
  }
  86%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pulsar-failover-recovery * {
    animation: none !important;
  }
}

From this family15 in Failover

See the family