cubic-bezier エディタ (CSS イージング)
CSS cubic-bezier()イージング関数をドラッグ操作でビジュアル編集。29種のプリセット(ease, easeInOut, easeOutBack等)、アニメーションプレビュー、CSSコードコピー対応。
プリセット
cubic-bezier(0.25, 0.1, 0.25, 1)CSS transition で実際に動くボックス (クリックで往復)
.element {
transition: all 1000ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
/* または @keyframes で */
@keyframes slide {
from { transform: translateX(0); }
to { transform: translateX(200px); }
}
.element {
animation: slide 1000ms cubic-bezier(0.25, 0.1, 0.25, 1);
}