Segment
CSSA target selector wheel rotates, highlighting a specific slice of a user cohort chart that begins to pulse.
- Tier
- CSS
- Dependencies
- None
- Duration
- 5.5 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Workflow and approvals, Automation and rules
- Industries
- SaaS and software, Cross-industry
- Style
- Technical · light stroke
- Set
- rollout
- Tags
- chartcirclegeometriclooppulse
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-rollout-segment" data-pulsar="rollout-segment" viewBox="0 0 160 96"><g stroke="currentColor" stroke-linecap="round" stroke-width="1.2"><circle cx="80" cy="48" r="28" opacity=".25"></circle><line x1="80" x2="80" y1="20" y2="76" opacity=".25"></line><line x1="52" x2="108" y1="48" y2="48" opacity=".25"></line></g><path id="rollout-segment-wedge" fill="var(--pulsar-accent, currentColor)" fill-opacity=".15" stroke="var(--pulsar-accent, currentColor)" stroke-linejoin="round" stroke-width="1.8" d="M80 48V20a28 28 0 0 1 28 28Z"></path><g id="rollout-segment-crosshair" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5"><circle cx="94" cy="34" r="5"></circle><line x1="94" x2="94" y1="25" y2="43" stroke-dasharray="1 2"></line><line x1="85" x2="103" y1="34" y2="34" stroke-dasharray="1 2"></line></g></svg>
animation.css
.pulsar-rollout-segment #rollout-segment-wedge {
animation: rollout-segment-pulse 5500ms ease-in-out infinite;
}
@keyframes rollout-segment-pulse {
0%,
25% {
transform: scale(1);
opacity: 0.4;
}
38%,
82% {
transform: translate(3px, -3px) scale(1.05);
opacity: 1;
}
92%,
100% {
transform: scale(1);
opacity: 0.4;
}
}
.pulsar-rollout-segment #rollout-segment-crosshair {
animation: rollout-segment-target 5500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes rollout-segment-target {
0%,
20% {
opacity: 0;
transform: translate(-14px, 14px) rotate(-45deg);
}
32%,
80% {
opacity: 1;
transform: translate(0, 0) rotate(0deg);
}
90%,
100% {
opacity: 0;
transform: translate(14px, -14px) rotate(45deg);
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-rollout-segment * {
animation: none !important;
}
}