mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-15 17:31:43 +08:00
9 lines
185 B
JavaScript
9 lines
185 B
JavaScript
|
export function easeInOutCubic(t, b, c, d) {
|
||
|
const cc = c - b;
|
||
|
t /= d / 2;
|
||
|
if (t < 1) {
|
||
|
return (cc / 2) * t * t * t + b;
|
||
|
}
|
||
|
return (cc / 2) * ((t -= 2) * t * t + 2) + b;
|
||
|
}
|