The Tool Hive LogoThe Tool Hive

Tools

Network Tools

Text Tools

Data Tools

Design Tools

Development Tools

Code Tools

Security Tools

Utility Tools


About

Categories

  1. Home
  2. Tools
  3. Design Tools
  4. Css Animation Generator
The Tool Hive Logo

The Tool Hive

A comprehensive collection of free, browser-first tools for developers. Network requests only occur when a tool makes them explicit.

Tools

Text ToolsData ToolsDesign ToolsNetwork ToolsDevelopment Tools

Resources

AboutPrivacy PolicyTerms of Service

Contact Us

Having any issues? Wish to request a tool or feature? Contact us here.

Email Us

© 2026 The Tool Hive. All rights reserved.

PrivacyTermsCookies

CSS Animation Generator

Design @keyframes visually with a live preview, presets, and full timing controls.

Presets

Timing

Duration (s)

Delay (s)

Iterations

Timing function

Direction

Fill mode

Loop forever

Keyframe stops 3

Percent

X (px)

Y (px)

Scale

Rotate (°)

Opacity

Percent

X (px)

Y (px)

Scale

Rotate (°)

Opacity

Percent

X (px)

Y (px)

Scale

Rotate (°)

Opacity

Live preview

Generated CSS

@keyframes hiveAnim {
  0% {
    transform: translate(0px, 0px) scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: translate(0px, 0px) scale(1.15) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(0px, 0px) scale(1) rotate(0deg);
    opacity: 1;
  }
}

.element {
  animation: hiveAnim 1s ease-in-out 0s infinite normal none;
}

Apply the rule with animation: hiveAnim 1s ease-in-out 0s infinite normal none;