Online CSS Cubic Bezier Generator
Create cubic-bezier() timing functions. Use presets or set two control points for animations.
Control point 1 (x1, y1)
Control point 2 (x2, y2)
cubic-bezier(0.25, 0.1, 0.25, 1)
.element {
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}Frequently Asked Questions
- What is cubic-bezier?
- A CSS timing function that defines acceleration for animations. Two control points define the curve.
- Can I use this in transition?
- Yes. Use it in transition-timing-function or animation-timing-function.
Related Developer Tools
JSON Formatter
Format, validate, and beautify JSON. Minify or pretty-print with one click.
Base64 Decode
Decode Base64 strings to text. Encode text to Base64.
UUID Generator
Generate random UUIDs (v4) for unique identifiers. Copy with one click.
URL Encoder Decoder
Encode and decode URLs. Convert special characters for safe use in URLs.
Convert Color Hex to RGB
Convert hex color codes to RGB values (R, G, B).
Convert Color RGB to Hex
Convert RGB values (R, G, B) to hex color codes.