element-plus/packages/utils/animation.ts

7 lines
200 B
TypeScript
Raw Normal View History

2022-04-12 22:50:34 +08:00
export const cubic = (value: number): number => {
return value ** 3
}
2020-08-07 14:05:12 +08:00
export const easeInOutCubic = (value: number): number =>
value < 0.5 ? cubic(value * 2) / 2 : 1 - cubic((1 - value) * 2) / 2