element-plus/packages/utils/animation.ts

6 lines
197 B
TypeScript
Raw Normal View History

2020-08-07 14:05:12 +08:00
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