Mend
CSSA grid of dots missing its center dot is restored as a new dot scales up from zero to complete the grid.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4.2 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Success and confirmation, Security and trust
- Industries
- SaaS and software, Security and identity
- Style
- Minimal line · light stroke
- Set
- patch
- Tags
- griddotsburstgeometricminimal
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-patch-mend" data-pulsar="patch-mend" viewBox="0 0 160 96"><g fill="currentColor" class="patch-mend-lattice" opacity=".5"><circle cx="44" cy="28" r="2.5"></circle><circle cx="62" cy="28" r="2.5"></circle><circle cx="80" cy="28" r="2.5"></circle><circle cx="98" cy="28" r="2.5"></circle><circle cx="116" cy="28" r="2.5"></circle><circle cx="44" cy="48" r="2.5"></circle><circle cx="62" cy="48" r="2.5"></circle><circle cx="98" cy="48" r="2.5"></circle><circle cx="116" cy="48" r="2.5"></circle><circle cx="44" cy="68" r="2.5"></circle><circle cx="62" cy="68" r="2.5"></circle><circle cx="80" cy="68" r="2.5"></circle><circle cx="98" cy="68" r="2.5"></circle><circle cx="116" cy="68" r="2.5"></circle></g><g stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5" class="patch-mend-traces"><line x1="80" x2="80" y1="28" y2="48" class="patch-mend-tr-top"></line><line x1="80" x2="80" y1="68" y2="48" class="patch-mend-tr-bot"></line><line x1="62" x2="80" y1="48" y2="48" class="patch-mend-tr-lft"></line><line x1="98" x2="80" y1="48" y2="48" class="patch-mend-tr-rgt"></line></g><g class="patch-mend-fused"><circle cx="80" cy="48" r="4" fill="var(--pulsar-accent, currentColor)"></circle><circle cx="80" cy="48" r="10" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" class="patch-mend-halo"></circle></g></svg>
animation.css
.pulsar-patch-mend {
display: block;
overflow: visible;
}
.pulsar-patch-mend .patch-mend-tr-top,
.pulsar-patch-mend .patch-mend-tr-bot,
.pulsar-patch-mend .patch-mend-tr-lft,
.pulsar-patch-mend .patch-mend-tr-rgt {
stroke-dasharray: 20;
stroke-dashoffset: 20;
animation: patch-mend-traces-anim 4200ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pulsar-patch-mend .patch-mend-fused {
transform-origin: 80px 48px;
animation: patch-mend-fused-anim 4200ms cubic-bezier(0.2, 1, 0.4, 1) infinite;
}
.pulsar-patch-mend .patch-mend-halo {
transform-origin: 80px 48px;
animation: patch-mend-halo-anim 4200ms cubic-bezier(0.2, 1, 0.4, 1) infinite;
}
@keyframes patch-mend-traces-anim {
0%,
15% {
stroke-dashoffset: 20;
opacity: 0;
}
20% {
opacity: 0.8;
}
38%,
78% {
stroke-dashoffset: 0;
opacity: 0.8;
}
88%,
100% {
stroke-dashoffset: 20;
opacity: 0;
}
}
@keyframes patch-mend-fused-anim {
0%,
35% {
transform: scale(0);
opacity: 0;
}
42% {
transform: scale(1.3);
opacity: 1;
}
50%,
78% {
transform: scale(1);
opacity: 1;
}
88%,
100% {
transform: scale(0);
opacity: 0;
}
}
@keyframes patch-mend-halo-anim {
0%,
38% {
transform: scale(0.4);
opacity: 0;
}
45% {
opacity: 0.9;
}
65% {
transform: scale(1.6);
opacity: 0;
}
100% {
transform: scale(1.6);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-patch-mend * {
animation: none !important;
}
}