ToolPal

CSS cubic-bezierジェネレーター

ドラッグ可能な制御点エディターとライブアニメーションプレビューで、CSS cubic-bezierイージングカーブを視覚的に作成します。

1001

色付きの制御点をドラッグしてカーブを形作ります。Yはオーバーシュートのために0未満や1超まで拡張できます。

色の濃さは、等間隔の11点でカーブをサンプリングしています。

transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);

/* with shorthand */
transition: all 1000ms cubic-bezier(0.25, 0.1, 0.25, 1);

/* on a keyframe animation */
animation: my-anim 1000ms cubic-bezier(0.25, 0.1, 0.25, 1) infinite;

使い方

ドラッグ可能な制御点エディターとライブアニメーションプレビューで、CSS cubic-bezierイージングカーブを視覚的に作成します。

  1. 1Click a preset (ease, ease-in-out, ease-out-back, etc.) to load a starting curve.
  2. 2Drag the two colored control points on the curve panel to shape the easing — Y can extend beyond 0 and 1 for overshoot.
  3. 3Watch the live animation preview to feel the motion. Adjust the duration slider for slower or faster playback.
  4. 4Fine-tune by typing exact values into the x1 / y1 / x2 / y2 number fields.
  5. 5Click 'Copy' to copy the cubic-bezier(...) value, then paste it into your CSS transition or animation.

主な機能

  • Drag-to-edit control points with overshoot range — Y values can go negative or above 1 for spring-like motion
  • Eight presets including overshoot variants (ease-out-back, ease-in-out-back, elastic)
  • Live demo with adjustable duration and replay button — feel the curve before copying it
  • Numeric x1/y1/x2/y2 fields synced with the visual editor — precise tuning either way
  • Output includes the standalone cubic-bezier() value plus complete transition/animation snippets

よくある質問

詳しく読む