CSS BEZIER CURVE PLAYGROUND
Drag the purple P1 and teal P2 handles on the canvas, use the sliders, or pick a preset. Simulate the animation and copy the CSS output.
/* Timing function */
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
/* Shorthand */
transition: all 2s cubic-bezier(0.25, 0.1, 0.25, 1);Both bars animate simultaneously