function easeInOutQuint(x: number): number { return x < 0.5 ? 16 * x * x * x * x * x : 1 - Math.pow(-2 * x + 2, 5) / 2; }; もし<(x)<(0.5)>なら 16*x^5 でなければ (-2*x+2)^5
たぶんこう