Create animated SVGs with CSS animations
Input SVG
Animation Type
Animation Settings
Preview
Animated SVG Code
CSS Animation (Alternative)
@keyframes svg-rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.animated-svg {
animation: svg-rotate 2s ease-in-out infinite;
transform-origin: center;
}