- What is a cubic bezier?
- A 4-point curve (2 endpoints, 2 control points) that defines the speed over time of an animation. The standard CSS timing function format.
- What's the difference from ease, ease-in, ease-out?
- Those are keyword presets. cubic-bezier() gives you precise control. The tool has each preset's cubic-bezier equivalent — useful for tweaking from a starting point.
- Can I preview with my actual element?
- Yes — paste your element or use the preview box. The motion curve plays so you can feel the timing.
- What makes a natural bezier?
- Real-world motion starts and ends slower (ease-in-out style). Steps functions (step-start, step-end) work for discrete transitions like a blinking cursor.