Files
dsProject/dsBase/WebRoot/html/cdn/es/utils/animation.mjs
2025-08-14 15:45:08 +08:00

6 lines
222 B
JavaScript

const cubic = (value) => Math.pow(value, 3);
const easeInOutCubic = (value) => value < 0.5 ? cubic(value * 2) / 2 : 1 - cubic((1 - value) * 2) / 2;
export { cubic, easeInOutCubic };
//# sourceMappingURL=animation.mjs.map