mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
7 lines
200 B
TypeScript
7 lines
200 B
TypeScript
export const cubic = (value: number): number => {
|
|
return value ** 3
|
|
}
|
|
|
|
export const easeInOutCubic = (value: number): number =>
|
|
value < 0.5 ? cubic(value * 2) / 2 : 1 - cubic((1 - value) * 2) / 2
|