UNPKG

@haiku/player

Version:

Haiku Player is a JavaScript library for building user interfaces

14 lines 450 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.easeOutBounce = function (x) { var n1 = 7.5625; var d1 = 2.75; return x < 1 / d1 ? n1 * x * x : x < 2 / d1 ? n1 * (x -= (1.5 / d1)) * x + .75 : x < 2.5 / d1 ? n1 * (x -= (2.25 / d1)) * x + .9375 : n1 * (x -= (2.625 / d1)) * x + .984375; }; //# sourceMappingURL=easeOutBounce.js.map