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
括号中的值。我只是想知道在做什么..?