Lines Matching refs:fx

2055 			type = ( type || "fx" ) + "mark";
2067 type = type || "fx";
2082 type = ( type || "fx" ) + "queue";
2098 type = type || "fx";
2104 // If the fx queue is dequeued, always remove the progress sentinel
2110 // Add a progress sentinel to prevent the fx queue from being
2112 if ( type === "fx" ) {
2133 type = "fx";
2142 if ( type === "fx" && queue[0] !== "inprogress" ) {
2155 time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
2156 type = type || "fx";
2166 return this.queue( type || "fx", [] );
2169 // are emptied (fx is the type by default)
2175 type = type || "fx";
8474 e = new jQuery.fx( this, opt, p );
8533 this.queue( type || "fx", [] );
8632 opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration :
8633 opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;
8635 // normalize opt.queue - true/undefined/null -> "fx"
8637 opt.queue = "fx";
8669 fx: function( elem, options, prop ) {
8679 jQuery.fx.prototype = {
8686 ( jQuery.fx.step[ this.prop ] || jQuery.fx.step._default )( this );
8706 fx = jQuery.fx;
8727 timerId = setInterval( fx.tick, fx.interval );
8841 jQuery.extend( jQuery.fx, {
8856 jQuery.fx.stop();
8875 opacity: function( fx ) {
8876 jQuery.style( fx.elem, "opacity", fx.now );
8879 _default: function( fx ) {
8880 if ( fx.elem.style && fx.elem.style[ fx.prop ] != null ) {
8881 fx.elem.style[ fx.prop ] = fx.now + fx.unit;
8883 fx.elem[ fx.prop ] = fx.now;
8892 jQuery.fx.step[ prop ] = function( fx ) {
8893 jQuery.style( fx.elem, prop, Math.max(0, fx.now) );