Home | History | Annotate | Download | only in flot

Lines Matching refs:Tween

8562 				tween = this.createTween( prop, value ),
8564 target = tween.cur(),
8578 start = jQuery.css( tween.elem, prop, true ) || end || 1;
8587 jQuery.style( tween.elem, prop, start + unit );
8589 // Update scale, tolerating zero or NaN from tween.cur()
8591 } while ( scale !== (scale = tween.cur() / target) && scale !== 1 && --maxIterations );
8594 tween.unit = unit;
8595 tween.start = start;
8597 tween.end = parts[1] ? start + ( parts[1] + 1 ) * end : end;
8599 return tween;
8667 var tween = jQuery.Tween( elem, animation.opts, prop, end,
8669 animation.tweens.push( tween );
8670 return tween;
8792 var index, prop, value, length, dataShow, toggle, tween, hooks, oldfire,
8901 tween = anim.createTween( prop, hidden ? dataShow[ prop ] : 0 );
8905 dataShow[ prop ] = tween.start;
8907 tween.end = tween.start;
8908 tween.start = prop === "width" || prop === "height" ? 1 : 0;
8915 function Tween( elem, options, prop, end, easing ) {
8916 return new Tween.prototype.init( elem, options, prop, end, easing );
8918 jQuery.Tween = Tween;
8920 Tween.prototype = {
8921 constructor: Tween,
8932 var hooks = Tween.propHooks[ this.prop ];
8936 Tween.propHooks._default.get( this );
8940 hooks = Tween.propHooks[ this.prop ];
8958 Tween.propHooks._default.set( this );
8964 Tween.prototype.init.prototype = Tween.prototype;
8966 Tween.propHooks = {
8968 get: function( tween ) {
8971 if ( tween.elem[ tween.prop ] != null &&
8972 (!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) {
8973 return tween.elem[ tween.prop ];
8980 result = jQuery.css( tween.elem, tween.prop, false, "" );
8984 set: function( tween ) {
8987 if ( jQuery.fx.step[ tween.prop ] ) {
8988 jQuery.fx.step[ tween.prop ]( tween );
8989 } else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) {
8990 jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
8992 tween.elem[ tween.prop ] = tween.now;
9001 Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
9002 set: function( tween ) {
9003 if ( tween.elem.nodeType && tween.elem.parentNode ) {
9004 tween.elem[ tween.prop ] = tween.now;
9175 jQuery.fx = Tween.prototype.init;