easeOutExpo: function (x, t, b, c, d) {
return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
}
jquery easin プラグインのこのコード行では、括弧内の値をどのように知りたいx, t, b, c, d
ですか?
easeOutExpo: function (x, t, b, c, d) {
return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
}
jquery easin プラグインのこのコード行では、括弧内の値をどのように知りたいx, t, b, c, d
ですか?