https://i.sstatic.net/60Hym.gif
This particular GIF is sourced from Dribbble.
I attempted to create a demo using pure CSS. Below are snippets of my code:
@keyframes circles{
0%{
transform: scale(0) rotate(150deg);
}
100%{
transform: scale(1) rotate(0deg);
}
}
The elements are not rotating uniformly.
The complex animation at the center of the gif isn't necessary, I am simply trying to achieve the rotating effect.
Any assistance or guidance would be greatly appreciated.