I am trying to rotate 3 paths in an SVG continuously, but I am having trouble getting them to rotate properly. The code I used worked fine with a single path SVG, but not with this one. I also have several others that I would like to rotate in a fixed position. Check out the source code and preview here!
.rotate {
animation: rotation 8s infinite linear;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}