Files
QingLong/WebRoot/html/cdn/lib/utils/animation.js
2025-08-15 09:13:13 +08:00

11 lines
330 B
JavaScript

'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
const cubic = (value) => Math.pow(value, 3);
const easeInOutCubic = (value) => value < 0.5 ? cubic(value * 2) / 2 : 1 - cubic((1 - value) * 2) / 2;
exports.cubic = cubic;
exports.easeInOutCubic = easeInOutCubic;
//# sourceMappingURL=animation.js.map