mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
863f61d908
Co-authored-by: afc163 <afc163@gmail.com>
11 lines
327 B
TypeScript
11 lines
327 B
TypeScript
export function easeInOutCubic(t: number, b: number, c: number, d: number) {
|
|
const cc = c - b;
|
|
// biome-ignore lint: it is a common easing function
|
|
t /= d / 2;
|
|
if (t < 1) {
|
|
return (cc / 2) * t * t * t + b;
|
|
}
|
|
// biome-ignore lint: it is a common easing function
|
|
return (cc / 2) * ((t -= 2) * t * t + 2) + b;
|
|
}
|