Lines Matching full:easing

4378 … Object that contains easing formulas for animation. You could extend it with your own. By default…
4389 # <p>See also <a href="http://raphaeljs.com/easing.html">Easing demo</a>.</p>
4474 easing = e.easing,
4496 var pos = easing(time / ms);
4603 …- easing (string) #optional easing type. Accept on of @Raphael.easing_formulas or CSS format: `cub…
4612 elproto.animateWith = function (el, anim, params, ms, easing, callback) { argument
4618 var a = params instanceof Animation ? params : R.animation(params, ms, easing, callback),
4630 // var a = params ? R.animation(params, ms, easing, callback) : anim,
4898 var easing = params.easing,
4899 easyeasy = R.easing_formulas[easing];
4901 easyeasy = Str(easing).match(bezierrg);
4921 easing: easyeasy, property
4962 …- easing (string) #optional easing type. Accept one of @Raphael.easing_formulas or CSS format: `cu…
4967 R.animation = function (params, ms, easing, callback) { argument
4971 if (R.is(easing, "function") || !easing) {
4972 callback = callback || easing || null;
4973 easing = null;
4987 easing && (p.easing = easing); field
5002 …- easing (string) #optional easing type. Accept one of @Raphael.easing_formulas or CSS format: `cu…
5009 elproto.animate = function (params, ms, easing, callback) { argument
5015 var anim = params instanceof Animation ? params : R.animation(params, ms, easing, callback);
5320 setproto.animate = function (params, ms, easing, callback) { argument
5321 (R.is(easing, "function") || !easing) && (callback = easing || null);
5333 easing = R.is(easing, string) ? easing : collector;
5334 var anim = R.animation(params, ms, easing, collector);