mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
6 lines
197 B
TypeScript
6 lines
197 B
TypeScript
export const cubic = (value: number): number => Math.pow(value, 3)
|
|
|
|
export const easeInOutCubic = (value: number): number => value < 0.5
|
|
? cubic(value * 2) / 2
|
|
: 1 - cubic((1 - value) * 2) / 2
|