CSS Transition Generator

Generate CSS transitions with timing functions

Browser ProcessingYour data never leaves your browser

Transition Properties

Property 1
Property
Duration
Timing
Delay

Custom Cubic Bezier

Preview (Hover to animate)

Hover State Changes

Scale
Rotate
Opacity
Background

CSS

.element {
  transition: all 0.3s ease 0s;
}

.element:hover {
  transform: scale(1.1) rotate(0deg);
  opacity: 1;
  background-color: #3b82f6;
}

Quick Presets