Reinforce
CSSTwo intersecting lines are reinforced by a small diagonal brace line that fades in and thickens, stabilizing them.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Security and trust, Workflow and approvals
- Industries
- Security and identity, IT services and infrastructure
- Style
- Minimal line · light stroke
- Set
- patch
- Tags
- geometriclineminimalstrokeui
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-reinforce" data-pulsar="patch-reinforce" viewBox="0 0 160 96"><g stroke="currentColor" stroke-linecap="round" stroke-width="2" class="patch-reinforce-beams" opacity=".65"><line x1="40" x2="120" y1="68" y2="68"></line><line x1="80" x2="80" y1="24" y2="68"></line><circle cx="80" cy="68" r="2.5" fill="currentColor"></circle><circle cx="40" cy="68" r="2" fill="currentColor"></circle><circle cx="120" cy="68" r="2" fill="currentColor"></circle><circle cx="80" cy="24" r="2" fill="currentColor"></circle></g><g class="patch-reinforce-braces"><line x1="60" x2="80" y1="68" y2="44" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2.5" class="patch-reinforce-brace-l"></line><line x1="100" x2="80" y1="68" y2="44" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="2.5" class="patch-reinforce-brace-r"></line><circle cx="60" cy="68" r="2" fill="var(--pulsar-accent, currentColor)" class="patch-reinforce-pin-l"></circle><circle cx="100" cy="68" r="2" fill="var(--pulsar-accent, currentColor)" class="patch-reinforce-pin-r"></circle><circle cx="80" cy="44" r="2.5" fill="var(--pulsar-accent, currentColor)" class="patch-reinforce-pin-c"></circle></g></svg>
animation.css
.pulsar-patch-reinforce {
display: block;
overflow: visible;
}
.pulsar-patch-reinforce .patch-reinforce-beams {
animation: patch-reinforce-wobble-anim 4000ms ease infinite;
}
.pulsar-patch-reinforce .patch-reinforce-braces {
animation: patch-reinforce-braces-anim 4000ms cubic-bezier(0.2, 1, 0.3, 1) infinite;
}
@keyframes patch-reinforce-wobble-anim {
0%,
15% {
transform: rotate(0.6deg);
transform-origin: 80px 68px;
}
25% {
transform: rotate(-0.4deg);
transform-origin: 80px 68px;
}
38%,
82% {
transform: rotate(0deg);
}
92%,
100% {
transform: rotate(0.6deg);
transform-origin: 80px 68px;
}
}
@keyframes patch-reinforce-braces-anim {
0%,
20% {
transform: scale(0.7);
transform-origin: 80px 56px;
opacity: 0;
}
35% {
transform: scale(1);
transform-origin: 80px 56px;
opacity: 1;
}
80% {
transform: scale(1);
opacity: 1;
}
90%,
100% {
transform: scale(0.7);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-patch-reinforce * {
animation: none !important;
}
}