Lines Matching refs:fx
1191 time = jQuery.fx ? jQuery.fx.speeds[time] || time : time;
5596 var e = new jQuery.fx( self, opt, name );
5687 opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
5688 jQuery.fx.speeds[opt.duration] || jQuery.fx.speeds._default;
5715 fx: function( elem, options, prop ) { method
5727 jQuery.fx.prototype = { class in jQuery
5734 (jQuery.fx.step[this.prop] || jQuery.fx.step._default)( this );
5769 timerId = setInterval(jQuery.fx.tick, 13);
5865 jQuery.extend( jQuery.fx, {
5876 jQuery.fx.stop();
5893 opacity: function( fx ) { argument
5894 jQuery.style(fx.elem, "opacity", fx.now);
5897 _default: function( fx ) { argument
5898 if ( fx.elem.style && fx.elem.style[ fx.prop ] != null ) {
5899 …fx.elem.style[ fx.prop ] = (fx.prop === "width" || fx.prop === "height" ? Math.max(0, fx.now) : fx…
5901 fx.elem[ fx.prop ] = fx.now;