我正在尝试将我自己的函数传递给一个 jquery 动画来创建我自己的缓动函数。这段代码是用coffeescript 编写的,实际上被调用了,但不执行缓动函数。它的作用就像一个回调函数。有没有其他人经历过这个?
easing : (x, t, b, c, d) ->
if ((t/=d) < (1/2.75))
return c*(7.5625*t*t) + b
else if (t < (2/2.75))
return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b
else if (t < (2.5/2.75))
return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b
else
return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b
show : () =>
@container.slideDown @config.animationTime, @easing(), () =>
@config.visible = true