CSS-Zone

Wave orb

Radiating ring around a glowing orb. Practical example for loaders and state indicators with live preview, HTML structure, and production-ready CSS you can integrate quickly.

Preview

HTML + CSS

<div class="wave-orb">
  <span class="wave-orb__ring"></span>
  <span class="wave-orb__core"></span>
</div>

<style>
.wave-orb{position:relative;width:110px;height:110px;display:grid;place-items:center;}
.wave-orb__ring{
  position:absolute;width:100%;height:100%;border-radius:50%;
  border:2px solid rgba(91,141,239,0.25);animation:wave-orb 2.4s ease-out infinite;
}
.wave-orb__core{
  width:32px;height:32px;border-radius:50%;
  background:radial-gradient(circle at 30% 30%,#5b8def,#9a6bff);
  box-shadow:0 0 20px rgba(91,141,239,.25),0 0 0 6px rgba(91,141,239,.12);
  animation:wave-core 1.6s ease-in-out infinite;
}
@keyframes wave-orb{0%{transform:scale(.65);opacity:.7;}70%{transform:scale(1.2);opacity:0;}100%{opacity:0;}}
@keyframes wave-core{0%,100%{transform:scale(1);}50%{transform:scale(1.12);}}
</style>

What the Wave orb pattern demonstrates

Wave orb is a reusable CSS animation pattern that can be integrated into modern UI without external dependencies. The example includes HTML structure and motion styles that are easy to scale for production components.

When this animation pattern is a good fit

Use this effect for state indication, visual focus, or lightweight micro-interactions that support content clarity. Motion should reinforce hierarchy, so keep speed, contrast, and density aligned with your interface goals.

How to implement it in production safely

Copy the snippet, adapt spacing and timing to your system tokens, and test behavior on mobile and low-power devices. Add reduced-motion support to keep the component accessible while preserving the same functional meaning.