Lines Matching refs:d

68 t.func = function (t, b, c, d) { return c*t/d + b; };  argument
107 t.setDuration = function(d){ argument
108 this._duration = (d == null || d <= 0) ? 100000 : d;
237 Tween.backEaseIn = function(t,b,c,d,a,p){ argument
239 return c*(t/=d)*t*((s+1)*t - s) + b;
241 Tween.backEaseOut = function(t,b,c,d,a,p){ argument
243 return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
245 Tween.backEaseInOut = function(t,b,c,d,a,p){ argument
247 if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
250 Tween.elasticEaseIn = function(t,b,c,d,a,p){ argument
252 if ((t/=d)==1) return b+c;
253 if (!p) p=d*.3;
260 return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
263 Tween.elasticEaseOut = function (t,b,c,d,a,p){ argument
264 if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
267 return (a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b);
269 Tween.elasticEaseInOut = function (t,b,c,d,a,p){ argument
270 if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) var p=d*(.3*1.5);
273 if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
274 return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
277 Tween.bounceEaseOut = function(t,b,c,d){ argument
278 if ((t/=d) < (1/2.75)) {
288 Tween.bounceEaseIn = function(t,b,c,d){ argument
289 return c - Tween.bounceEaseOut (d-t, 0, c, d) + b;
291 Tween.bounceEaseInOut = function(t,b,c,d){ argument
292 if (t < d/2) return Tween.bounceEaseIn (t*2, 0, c, d) * .5 + b;
293 else return Tween.bounceEaseOut (t*2-d, 0, c, d) * .5 + c*.5 + b;
296 Tween.strongEaseInOut = function(t,b,c,d){ argument
297 return c*(t/=d)*t*t*t*t + b;
300 Tween.regularEaseIn = function(t,b,c,d){ argument
301 return c*(t/=d)*t + b;
303 Tween.regularEaseOut = function(t,b,c,d){ argument
304 return -c *(t/=d)*(t-2) + b;
307 Tween.regularEaseInOut = function(t,b,c,d){ argument
308 if ((t/=d/2) < 1) return c/2*t*t + b;
311 Tween.strongEaseIn = function(t,b,c,d){ argument
312 return c*(t/=d)*t*t*t*t + b;
314 Tween.strongEaseOut = function(t,b,c,d){ argument
315 return c*((t=t/d-1)*t*t*t*t + 1) + b;
318 Tween.strongEaseInOut = function(t,b,c,d){
319 if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;