๐ŸŽจ CSS Tools

CSS Animation Generator

Build @keyframe animations visually. Set timing, easing, keyframe properties, and preview live. Copy the CSS instantly.

Animation Settings
Keyframes
Presets
Live Preview
โœฆ
โœ“ Copied!

Related CSS Tools

Frequently Asked Questions

What is a CSS @keyframes animation?

CSS @keyframes lets you define the intermediate steps of an animation sequence. You specify CSS properties at different percentage points (0% = start, 100% = end) and the browser smoothly interpolates between them. The animation is then applied to an element using the animation property.

What is the difference between CSS animation and CSS transition?

CSS transitions animate a property when it changes from one value to another (typically triggered by a state change like :hover). CSS animations use @keyframes and can run automatically, loop, alternate directions, and involve multiple steps โ€” making them more powerful for complex or continuous effects.

What does animation-fill-mode do?

fill-mode controls what happens before and after an animation plays. "forwards" keeps the final keyframe state after the animation ends. "backwards" applies the first keyframe state during the delay. "both" applies both behaviours. "none" (default) reverts to the original style before and after.

What is animation-timing-function?

The timing function controls the speed curve of the animation โ€” how fast or slow it moves through its keyframes at different points. Common values: ease (slow-fast-slow), linear (constant speed), ease-in (starts slow), ease-out (ends slow), and cubic-bezier() for custom curves.