<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="#6C43E8">
<circle cx="7" cy="7" r="6"></circle>
<circle cx="25" cy="7" r="6"></circle>
<circle cx="25" cy="25" r="6"></circle>
<circle cx="7" cy="25" r="6"></circle>
</svg>
svg {
transform-origin:50% 50%;
animation: nc-loop-dots-anim 1s infinite cubic-bezier(.645,.045,.355,1);
}
@keyframes nc-loop-dots-anim{
0%{transform:scale(1)}
50%{transform:scale(.7) rotate(90deg)}
100%{transform:scale(1) rotate(180deg)}
}
body {
margin: 50px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.