Wifi Connect Loop
A copy-paste animated icons component in pure HTML & CSS. Zero dependencies, framework-agnostic, MIT-licensed.
Animated IconsHTMLCSSany framework
Copy into your project
HTML
<div class="nuda-ai2-wifi-connect" role="img" aria-label="Connecting to network">
<svg class="nuda-ai2-wifi-connect__svg" viewBox="0 0 24 24" aria-hidden="true">
<path class="nuda-ai2-wifi-connect__arc nuda-ai2-wifi-connect__arc-3" d="M1.42 9a16 16 0 0 1 21.16 0" />
<path class="nuda-ai2-wifi-connect__arc nuda-ai2-wifi-connect__arc-2" d="M5 12.55a11 11 0 0 1 14.08 0" />
<path class="nuda-ai2-wifi-connect__arc nuda-ai2-wifi-connect__arc-1" d="M8.53 16.11a6 6 0 0 1 6.95 0" />
<line class="nuda-ai2-wifi-connect__dot" x1="12" y1="20" x2="12.01" y2="20" />
</svg>
</div>CSS
.nuda-ai2-wifi-connect {
display: inline-flex;
align-items: center;
justify-content: center;
width: 56px;
height: 48px;
background: #09090b;
border: 1px solid rgba(255,255,255,.1);
border-radius: 10px;
color: #e4ff54;
}
.nuda-ai2-wifi-connect__svg {
width: 30px;
height: 30px;
stroke: currentColor;
stroke-width: 2;
stroke-linecap: round;
fill: none;
}
.nuda-ai2-wifi-connect__dot {
opacity: 1;
}
.nuda-ai2-wifi-connect__arc-1 {
animation: _nuda-ai2wifi-connect 1.8s ease-in-out infinite;
}
.nuda-ai2-wifi-connect__arc-2 {
animation: _nuda-ai2wifi-connect 1.8s ease-in-out infinite .25s;
}
.nuda-ai2-wifi-connect__arc-3 {
animation: _nuda-ai2wifi-connect 1.8s ease-in-out infinite .5s;
}
@keyframes _nuda-ai2wifi-connect {
0%,100% {
opacity: .18;
}
50% {
opacity: 1;
}
}
@media (prefers-reduced-motion:reduce) {
.nuda-ai2-wifi-connect__arc {
animation: none !important;
opacity: 1;
}
}
How to use Wifi Connect Loop
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.