UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

13 lines (10 loc) 274 B
// eslint-disable-next-line import/prefer-default-export export function easeInOutCubic(t, b, c, d) { var 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; } //# sourceMappingURL=easings.js.map