Skip to content

Pixel Loader

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

SpinnersHTMLCSSany framework

Copy into your project

HTML
<div class="nuda-pixel">
  <span></span><span></span><span></span>
  <span></span><span></span><span></span>
  <span></span><span></span><span></span>
</div>
CSS
.nuda-pixel span {
  background: #e4ff54;
  border-radius: 1px;
  animation: nuda-pix-blink 1.4s ease-in-out infinite;
}

@keyframes nuda-pix-blink {
  0%, 40%, 100% { opacity: 0.2; transform: scale(0.7); }
  20%           { opacity: 1;   transform: scale(1);   }
}

How to use Pixel Loader

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 spinners components

← Browse all NudaUI components