Sổ Tay AI

CSS Animation Builder (Visual)

Visual builder for CSS animations with 10 presets (fadeIn, bounce, pulse, spin, shake…). Tweak duration, easing, iteration. Copy ready-to-use CSS.

All tools
Presets
Preview
CSS
 

Visual builder for CSS animations. 10 beautiful presets + custom keyframes. Standard @keyframes + animation shorthand.

CSS Animation 101

A CSS animation has two parts: @keyframes defines the steps, and the animation property applies them to an element.

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.element {
  animation: fadeIn 0.5s ease-out forwards;
}

Animation properties

Practical tips

Related

Related tools

See all tools →