Exploded View
CSSA central three-dimensional cube outline expands outward along its three axes into separate face plates, illustrating an exploded parts view.
- Tier
- CSS
- Dependencies
- None
- Duration
- 4 s, loops
- Categories
- Decorative and illustrative
- Use cases
- Onboarding and setup, Hero and marketing
- Industries
- Manufacturing and industrial, Cross-industry
- Style
- Duotone · regular stroke
- Set
- bom
- Tags
- geometricillustrationloop
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" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" class="pulsar pulsar-bom-exploded-view" data-pulsar="bom-exploded-view" viewBox="0 0 160 96"><path fill="var(--pulsar-accent, currentColor)" fill-opacity=".25" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" d="m80 43 9 5-9 5-9-5Z" class="core"></path><path fill="var(--pulsar-accent, currentColor)" fill-opacity=".1" stroke="var(--pulsar-accent, currentColor)" stroke-width="1.5" d="m80 30 22 12-22 12-22-12Z" class="plate top"></path><path stroke-width="1.5" d="m56 46 22 12v20L56 66Z" class="plate left" opacity=".6"></path><path stroke-width="1.5" d="m82 58 22-12v20L82 78Z" class="plate right" opacity=".6"></path><line x1="80" x2="80" y1="30" y2="18" stroke="var(--pulsar-accent, currentColor)" stroke-dasharray="2 2" opacity=".4"></line></svg>
animation.css
.pulsar-bom-exploded-view {
display: block;
overflow: visible;
}
.pulsar-bom-exploded-view .plate.top {
animation: bom-exploded-view-top 4000ms ease-in-out infinite;
}
.pulsar-bom-exploded-view .plate.left {
animation: bom-exploded-view-left 4000ms ease-in-out infinite;
}
.pulsar-bom-exploded-view .plate.right {
animation: bom-exploded-view-right 4000ms ease-in-out infinite;
}
.pulsar-bom-exploded-view .core {
animation: bom-exploded-view-core 4000ms ease-in-out infinite;
}
@keyframes bom-exploded-view-top {
0%,
100% {
transform: translateY(0);
opacity: 0.6;
}
50% {
transform: translateY(-14px);
opacity: 1;
}
}
@keyframes bom-exploded-view-left {
0%,
100% {
transform: translate(0, 0);
opacity: 0.5;
}
50% {
transform: translate(-12px, 8px);
opacity: 0.9;
}
}
@keyframes bom-exploded-view-right {
0%,
100% {
transform: translate(0, 0);
opacity: 0.5;
}
50% {
transform: translate(12px, 8px);
opacity: 0.9;
}
}
@keyframes bom-exploded-view-core {
0%,
100% {
transform: scale(0.9);
opacity: 0.4;
}
50% {
transform: scale(1.15);
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.pulsar-bom-exploded-view .plate.top,
.pulsar-bom-exploded-view .plate.left,
.pulsar-bom-exploded-view .plate.right,
.pulsar-bom-exploded-view .core {
animation: none;
transform: none;
opacity: 1;
}
}