Threshold
CSSA horizontal dashed threshold line is crossed by a rising vertical bar that shoots above the threshold and glows.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Dashboards and reporting, Notifications
- Industries
- Security and identity, Cross-industry
- Style
- Minimal line · light stroke
- Set
- anomaly
- Tags
- barschartlineglowminimal
Companion assets
The same artwork, not animated. Derived from the entry’s own resting state, so it matches exactly.
Code
animation.svg
<svg xmlns="http://www.w3.org/2000/svg" fill="none" aria-hidden="true" class="pulsar pulsar-anomaly-threshold" data-pulsar="anomaly-threshold" viewBox="0 0 160 96"><line x1="36" x2="124" y1="74" y2="74" stroke="currentColor" stroke-linecap="round" stroke-width="1.5" opacity=".4"></line><line x1="36" x2="124" y1="36" y2="36" stroke="currentColor" stroke-dasharray="4 4" stroke-width="1.5" opacity=".5"></line><circle cx="124" cy="36" r="2" fill="currentColor" opacity=".5"></circle><rect width="12" height="22" x="50" y="52" fill="currentColor" fill-opacity=".1" stroke="currentColor" stroke-width="1.5" opacity=".5" rx="2"></rect><rect width="12" height="28" x="98" y="46" fill="currentColor" fill-opacity=".1" stroke="currentColor" stroke-width="1.5" opacity=".5" rx="2"></rect><g class="anomaly-threshold-surge"><rect width="12" height="50" x="74" y="24" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="2" rx="2"></rect><circle cx="80" cy="24" r="3" fill="var(--pulsar-accent, currentColor)"></circle></g><circle cx="80" cy="24" r="7" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="anomaly-threshold-halo"></circle></svg>
animation.css
.pulsar-anomaly-threshold {
display: block;
overflow: visible;
}
.pulsar-anomaly-threshold .anomaly-threshold-surge {
transform-origin: 80px 74px;
animation: anomaly-threshold-surge-anim 4000ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
.pulsar-anomaly-threshold .anomaly-threshold-halo {
transform-origin: 80px 24px;
animation: anomaly-threshold-halo-anim 4000ms ease infinite;
}
@keyframes anomaly-threshold-surge-anim {
0%,
15% {
transform: scaleY(0.4);
}
38%,
78% {
transform: scaleY(1);
}
92%,
100% {
transform: scaleY(0.4);
}
}
@keyframes anomaly-threshold-halo-anim {
0%,
36% {
transform: scale(0.4);
opacity: 0;
}
44% {
opacity: 0.9;
}
65% {
transform: scale(1.6);
opacity: 0;
}
100% {
transform: scale(1.6);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-anomaly-threshold * {
animation: none !important;
}
}