Skip to content

Pulse Grid

A copy-paste skeletons component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.

SkeletonsHTMLCSSany framework

Copy into your project

HTML
<div class="nuda-skpgrid" aria-hidden="true">
  <!-- 3x3 tiles; stagger delays diagonally: (row + col) * 0.12s -->
  <span style="animation-delay:0s"></span>
  <span style="animation-delay:.12s"></span>
  <span style="animation-delay:.24s"></span>
  <span style="animation-delay:.12s"></span>
  <span style="animation-delay:.24s"></span>
  <span style="animation-delay:.36s"></span>
  <span style="animation-delay:.24s"></span>
  <span style="animation-delay:.36s"></span>
  <span style="animation-delay:.48s"></span>
</div>
CSS
/* Pulse Grid Skeleton
   3x3 grid of tiles pulsing in a diagonal wave (transform: scale + opacity).
   Customize: --skpgrid-tile */

.nuda-skpgrid {
  --skpgrid-tile: rgba(228, 255, 84, 0.16);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
  width: fit-content;
}

.nuda-skpgrid span {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--skpgrid-tile);
  transform-origin: center;
  animation: nuda-skpgrid 1.5s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes nuda-skpgrid {
  0%, 100% { transform: scale(0.82); opacity: 0.35; }
  50%      { transform: scale(1);    opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  .nuda-skpgrid span { animation: none; opacity: 0.55; }
}

How to use Pulse Grid

Paste the HTML where you need it and the CSS into a global stylesheet (or a <style> tag). Every class is prefixed nuda- so it never collides with Tailwind or your own styles. Tweak the CSS custom properties to match your design system.

Works in React, Vue, Svelte, Astro, Next.js, Nuxt, Laravel Blade, Django, Rails — or a single .html file. No npm install, no build step.

More skeletons components

← Browse all NudaUI components