〰️ Generador CSS de Easing y Temporización
Design CSS cubic-bezier easing curves visually. Drag handles, preview animations, pick from presets like ease, ease-in-out, spring. Copy CSS free.
Drag the two bezier control points to shape your animation curve, or pick from preset easings (ease, spring, bounce). The preview animates a ball using your curve so you see exactly how it feels — then copy the cubic-bezier() value for your CSS transition or animation.
How to Use
Drag the control points
Click and drag the two colored handles on the SVG canvas to define your easing curve shape.
Preview the animation
Click Play to see a box animate using your cubic-bezier curve. Try preset buttons for common easings.
Copy the function
Click Copy to copy the cubic-bezier() value. Use it in your CSS transition or animation.
Frequently Asked Questions
Guía: Editor de Curvas Cubic-Bezier CSS
¿Qué es?
cubic-bezier(x1,y1,x2,y2) define la curva de aceleración de animaciones y transiciones mediante dos puntos de control. Determina si la animación empieza rápido y frena (ease-out), comienza lento (ease-in), o tiene ritmo natural.
Cómo usar
- Arrastra los puntos de control en la gráfica.
- Observa la animación de previsualización en tiempo real.
- Copia el valor CSS para tu transición.
Consejos
- Para elementos que "salen", usa
ease-in; para los que "entran",ease-out. - Y mayor que 1 produce animaciones con efecto "rebote" — spring effect.
cubic-bezier(0.34,1.56,0.64,1)simula un rebote suave natural.