Files
dsProject/dsBase/WebRoot/html/cdn/es/utils/animation.mjs

6 lines
222 B
JavaScript
Raw Normal View History

2025-08-14 15:45:08 +08:00
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