Contributor
CSSA clean profile avatar icon is surrounded by a circular activity ring that draws in clockwise to represent contributor commit activity.
- Tier
- CSS
- Dependencies
- None
- Duration
- 5.5 s, loops
- Categories
- Icons and micro-interactions
- Use cases
- Dashboards and reporting, Collaboration
- Industries
- SaaS and software, Cross-industry
- Style
- Minimal line · light stroke
- Set
- changelog
- Tags
- circleloopminimalringui
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-changelog-author" data-pulsar="changelog-author" viewBox="0 0 160 96"><g stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><circle cx="80" cy="42" r="8" fill="currentColor" fill-opacity=".08"></circle><path d="M64 64c0-8 6-10 16-10s16 2 16 10"></path></g><circle cx="80" cy="48" r="28" stroke="currentColor" opacity=".2"></circle><circle id="changelog-author-ring" cx="80" cy="48" r="28" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="176" stroke-dashoffset="176" stroke-linecap="round" stroke-width="2"></circle><circle id="changelog-author-dot" cx="80" cy="20" r="3" fill="var(--pulsar-accent, currentColor)"></circle></svg>
animation.css
.pulsar-changelog-author #changelog-author-ring {
transform-origin: 80px 48px;
transform: rotate(-90deg);
animation: changelog-author-draw 5500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes changelog-author-draw {
0%,
20% {
stroke-dashoffset: 176;
}
50%,
82% {
stroke-dashoffset: 0;
}
92%,
100% {
stroke-dashoffset: -176;
}
}
.pulsar-changelog-author #changelog-author-dot {
transform-origin: 80px 48px;
animation: changelog-author-dot-spin 5500ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes changelog-author-dot-spin {
0%,
20% {
transform: rotate(0deg);
opacity: 0;
}
25% {
opacity: 1;
}
50%,
82% {
transform: rotate(360deg);
opacity: 1;
}
90%,
100% {
transform: rotate(360deg);
opacity: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-changelog-author * {
animation: none !important;
}
}