Pulsar

Islanding Mode

CSS

A segmented protective ring isolates a local network of three pulsing nodes from the main network line, establishing a self-sustained island.

Tier
CSS
Dependencies
None
Duration
4.4 s, loops
Categories
Decorative and illustrative
Use cases
Security and trust, Workflow and approvals
Industries
Energy and utilities, Telecommunications
Style
Duotone · light stroke
Set
grid
Tags
ringgridpulsegeometric

Companion assets

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

Animated
CSS tier
Static vector
Islanding Mode, not animated
Download SVG

Code

animation.svg

<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" class="pulsar pulsar-grid-islanding" data-pulsar="grid-islanding" viewBox="0 0 160 96"><line x1="16" x2="48" y1="48" y2="48" stroke-width="1.5" opacity=".3"></line><circle cx="48" cy="48" r="3" stroke-width="1.5" opacity=".4"></circle><circle cx="104" cy="48" r="32" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="6 6" stroke-width="1.5" class="grid-island-barrier"></circle><circle cx="92" cy="36" r="4" stroke-width="1.5"></circle><circle cx="116" cy="36" r="4" stroke-width="1.5"></circle><circle cx="104" cy="62" r="4" stroke-width="1.5"></circle><path d="M92 36h24l-12 26Z" opacity=".3"></path><line x1="48" x2="72" y1="48" y2="48" stroke-width="2" class="grid-island-switch"></line></svg>

animation.css

.pulsar-grid-islanding {
  display: block;
  overflow: visible;
}
.pulsar-grid-islanding .grid-island-switch {
  transform-origin: 48px 48px;
  animation: grid-islanding-island-sw-anim 4400ms ease-in-out infinite;
}
.pulsar-grid-islanding .grid-island-barrier {
  animation: grid-islanding-island-barrier-anim 4400ms ease-in-out infinite;
}

@keyframes grid-islanding-island-sw-anim {
  0%,
  25% {
    transform: rotate(0deg);
  }
  40%,
  85% {
    transform: rotate(-35deg);
  }
  95%,
  100% {
    transform: rotate(0deg);
  }
}

@keyframes grid-islanding-island-barrier-anim {
  0%,
  25% {
    opacity: 0.2;
  }
  40%,
  85% {
    opacity: 1;
  }
  95%,
  100% {
    opacity: 0.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pulsar-grid-islanding .grid-island-switch,
  .pulsar-grid-islanding .grid-island-barrier {
    animation: none;
    transform: none;
    opacity: 0.8;
  }
}

From this family15 in Grid

See the family