Lines Matching full:easing
4018 … Object that contains easing formulas for animation. You could extend it with your own. By default…
4029 # <p>See also <a href="http://raphaeljs.com/easing.html">Easing demo</a>.</p>
4114 easing = e.easing,
4136 var pos = easing(time / ms);
4242 …- easing (string) #optional easing type. Accept on of @Raphael.easing_formulas or CSS format: `cub…
4251 elproto.animateWith = function (el, anim, params, ms, easing, callback) { argument
4257 var a = params instanceof Animation ? params : R.animation(params, ms, easing, callback),
4269 // var a = params ? R.animation(params, ms, easing, callback) : anim,
4537 var easing = params.easing,
4538 easyeasy = R.easing_formulas[easing];
4540 easyeasy = Str(easing).match(bezierrg);
4560 easing: easyeasy, property
4601 …- easing (string) #optional easing type. Accept one of @Raphael.easing_formulas or CSS format: `cu…
4606 R.animation = function (params, ms, easing, callback) { argument
4610 if (R.is(easing, "function") || !easing) {
4611 callback = callback || easing || null;
4612 easing = null;
4640 easing && (p.easing = easing); field
4655 …- easing (string) #optional easing type. Accept one of @Raphael.easing_formulas or CSS format: `cu…
4662 elproto.animate = function (params, ms, easing, callback) { argument
4668 var anim = params instanceof Animation ? params : R.animation(params, ms, easing, callback);
4973 setproto.animate = function (params, ms, easing, callback) { argument
4974 (R.is(easing, "function") || !easing) && (callback = easing || null);
4986 easing = R.is(easing, string) ? easing : collector;
4987 var anim = R.animation(params, ms, easing, collector);