Skip to main content

Toolzium

Command Palette

Search for a command to run...

CSS Keyframe Builder

Visually build and preview CSS keyframe animations. Export pure CSS code.

Timeline
Select a keyframe to edit properties
Animation Settings
Live Preview
Preview
Generated CSS
@keyframes customAnim {
  0% {
    transform: scale(1) rotate(0deg) translate(0px, 0px);
    opacity: 1;
    background-color: #3b82f6;
    border-radius: 0%;
  }
  50% {
    transform: scale(1.2) rotate(180deg) translate(0px, 0px);
    opacity: 0.8;
    background-color: #ec4899;
    border-radius: 50%;
  }
  100% {
    transform: scale(1) rotate(360deg) translate(0px, 0px);
    opacity: 1;
    background-color: #3b82f6;
    border-radius: 0%;
  }
}

.animate-element {
  animation: customAnim 2s ease-in-out 0s infinite;
}
CSS Keyframe Visual Animation Builder | Toolzium - Toolzium