Skew
CSSA three-by-three grid of dots where one central dot tilts and shifts off-center while its neighbors pull toward it.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Dashboards and reporting, Security and trust
- Industries
- SaaS and software, Security and identity
- Style
- Minimal line · light stroke
- Set
- anomaly
- Tags
- griddotsgeometricminimalscale
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-skew" data-pulsar="anomaly-skew" viewBox="0 0 160 96"><g stroke="currentColor" class="anomaly-skew-lattice" opacity=".35"><line x1="56" x2="80" y1="28" y2="28"></line><line x1="80" x2="104" y1="28" y2="28"></line><line x1="56" x2="80" y1="48" y2="48"></line><line x1="80" x2="104" y1="48" y2="48"></line><line x1="56" x2="80" y1="68" y2="68"></line><line x1="80" x2="104" y1="68" y2="68"></line><line x1="56" x2="56" y1="28" y2="68"></line><line x1="80" x2="80" y1="28" y2="68"></line><line x1="104" x2="104" y1="28" y2="68"></line></g><g fill="currentColor" opacity=".6"><circle cx="56" cy="28" r="2.5"></circle><circle cx="80" cy="28" r="2.5"></circle><circle cx="104" cy="28" r="2.5"></circle><circle cx="56" cy="48" r="2.5"></circle><circle cx="104" cy="48" r="2.5"></circle><circle cx="56" cy="68" r="2.5"></circle><circle cx="80" cy="68" r="2.5"></circle><circle cx="104" cy="68" r="2.5"></circle></g><g class="anomaly-skew-core"><circle cx="80" cy="48" r="4" fill="var(--pulsar-accent, currentColor)"></circle><line x1="56" x2="80" y1="48" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.8"></line><line x1="80" x2="80" y1="28" y2="48" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.8"></line></g></svg>
animation.css
.pulsar-anomaly-skew {
display: block;
overflow: visible;
}
.pulsar-anomaly-skew .anomaly-skew-core {
animation: anomaly-skew-core-anim 4000ms cubic-bezier(0.25, 1, 0.5, 1) infinite;
}
@keyframes anomaly-skew-core-anim {
0%,
15% {
transform: translate(0, 0);
}
38%,
78% {
transform: translate(12px, -10px);
}
90%,
100% {
transform: translate(0, 0);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-anomaly-skew * {
animation: none !important;
}
}