Schedule
CSSA technical calendar matrix grid highlights a scheduled release slot, locking in with a precision crosshair and countdown pulse.
- Tier
- CSS
- Dependencies
- None
- Duration
- 5.5 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Workflow and approvals, Scheduling and time
- Industries
- SaaS and software, Cross-industry
- Style
- Technical · light stroke
- Set
- rollout
- Tags
- gridgeometriclooppulseui
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-schedule" data-pulsar="rollout-schedule" viewBox="0 0 160 96"><rect width="76" height="56" x="42" y="20" fill="currentColor" fill-opacity=".04" stroke="currentColor" stroke-width="1.2" rx="4"></rect><line x1="42" x2="118" y1="32" y2="32" stroke="currentColor" stroke-width="1.2" opacity=".3"></line><g stroke="currentColor" opacity=".2"><line x1="67" x2="67" y1="32" y2="76"></line><line x1="93" x2="93" y1="32" y2="76"></line><line x1="42" x2="118" y1="46" y2="46"></line><line x1="42" x2="118" y1="60" y2="60"></line></g><g id="rollout-schedule-target"><rect width="23" height="12" x="94" y="47" fill="var(--pulsar-accent, currentColor)" fill-opacity=".2" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" rx="2"></rect><circle cx="105" cy="53" r="2.5" fill="var(--pulsar-accent, currentColor)"></circle></g><g id="rollout-schedule-reticle" stroke="var(--pulsar-accent, currentColor)" stroke-linecap="round" stroke-width="1.5"><line x1="105" x2="105" y1="41" y2="45"></line><line x1="105" x2="105" y1="61" y2="65"></line><line x1="88" x2="92" y1="53" y2="53"></line><line x1="118" x2="122" y1="53" y2="53"></line></g></svg>
animation.css
.pulsar-rollout-schedule #rollout-schedule-target {
animation: rollout-schedule-target-pulse 5500ms ease-in-out infinite;
}
@keyframes rollout-schedule-target-pulse {
0%,
25% {
opacity: 0.3;
}
38%,
80% {
opacity: 1;
}
92%,
100% {
opacity: 0.3;
}
}
.pulsar-rollout-schedule #rollout-schedule-reticle {
transform-origin: 105px 53px;
animation: rollout-schedule-lock 5500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes rollout-schedule-lock {
0%,
22% {
transform: scale(1.4);
opacity: 0;
}
32%,
78% {
transform: scale(1);
opacity: 1;
}
88%,
100% {
transform: scale(1.4);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-rollout-schedule * {
animation: none !important;
}
}