Pulsar

Abatement Curve

CSS

An emissions trend line curves sharply downward on a graph before settling into a flat, stable horizontal trajectory near zero.

Tier
CSS
Dependencies
None
Duration
4 s, loops
Categories
Icons and micro-interactions
Use cases
Determinate progress, Dashboards and reporting
Industries
Energy and utilities, Cross-industry
Style
Minimal line · light stroke
Set
emission
Tags
chartlineminimalpulsedots

Companion assets

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

Animated
CSS tier
Static vector
Abatement Curve, 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-emission-abatement-curve" data-pulsar="emission-abatement-curve" viewBox="0 0 160 96"><line x1="34" x2="34" y1="20" y2="76" stroke-width="1.5" opacity=".4"></line><line x1="34" x2="132" y1="76" y2="76" stroke-width="1.5" opacity=".4"></line><line x1="34" x2="132" y1="68" y2="68" stroke-dasharray="2 3" opacity=".3"></line><path stroke="var(--pulsar-accent, currentColor)" stroke-width="2" d="M40 26q25 4 45 32t43 10" class="emission-curve-path"></path><g class="emission-curve-tracker"><circle r="3" fill="var(--pulsar-accent, currentColor)" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5"></circle><circle r="7" stroke="var(--pulsar-accent, currentColor)" class="emission-curve-pulse"></circle></g></svg>

animation.css

.pulsar-emission-abatement-curve {
  display: block;
  overflow: visible;
}
.pulsar-emission-abatement-curve .emission-curve-path {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: emission-abatement-curve-draw 4000ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-emission-abatement-curve .emission-curve-tracker {
  offset-path: path('M 40 26 Q 65 30 85 58 T 128 68');
  animation: emission-abatement-curve-ride 4000ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-emission-abatement-curve .emission-curve-pulse {
  transform-origin: 0 0;
  animation: emission-abatement-curve-ring 4000ms ease-out infinite;
}

@keyframes emission-abatement-curve-draw {
  0% {
    stroke-dashoffset: 120;
    opacity: 0.2;
  }
  35%,
  80% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  92%,
  100% {
    stroke-dashoffset: -120;
    opacity: 0.2;
  }
}

@keyframes emission-abatement-curve-ride {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  45%,
  80% {
    offset-distance: 100%;
    opacity: 1;
  }
  92%,
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

@keyframes emission-abatement-curve-ring {
  0%,
  45% {
    transform: scale(0.6);
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  75%,
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pulsar-emission-abatement-curve .emission-curve-path,
  .pulsar-emission-abatement-curve .emission-curve-tracker,
  .pulsar-emission-abatement-curve .emission-curve-pulse {
    animation: none;
    stroke-dashoffset: 0;
    offset-distance: 100%;
    opacity: 1;
  }
  .pulsar-emission-abatement-curve .emission-curve-pulse {
    opacity: 0;
  }
}

From this family15 in Emission

See the family