X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Ffx%2Ffx.js;h=3df95de280e9e30b8f09cae449bf4b2988cd683a;hb=fb534aea034c9b832b484e6dd26bd2e86f029433;hp=45cc2d917c8862395b670698267100185cceb47e;hpb=a42a8e5afa2e4ca7690081bce9899d5e6e0d1cf4;p=jquery.git diff --git a/src/fx/fx.js b/src/fx/fx.js index 45cc2d9..3df95de 100644 --- a/src/fx/fx.js +++ b/src/fx/fx.js @@ -1,7 +1,7 @@ jQuery.fn.extend({ // overwrite the old show method - //_show: jQuery.fn.show, + _show: jQuery.fn.show, /** * Show all matched elements using a graceful animation. @@ -39,7 +39,7 @@ jQuery.fn.extend({ }, // Overwrite the old hide method - //_hide: jQuery.fn.hide, + _hide: jQuery.fn.hide, /** * Hide all matched elements using a graceful animation. @@ -141,6 +141,13 @@ jQuery.fn.extend({ slideUp: function(speed,callback){ return this.animate({height: "hide"}, speed, callback); }, + + slideToggle: function(speed,callback){ + return this.each(function(){ + var state = $(this).is(":hidden") ? "show" : "hide"; + $(this).animate({height: state}, speed, callback); + }); + }, /** * Fade in all matched elements by adjusting their opacity. @@ -254,14 +261,17 @@ jQuery.fn.extend({ */ animate: function(prop,speed,callback) { return this.queue(function(){ - var i = 0; + + this.curAnim = prop; + for ( var p in prop ) { - var e = new jQuery.fx( this, jQuery.speed(speed,callback,i++), p ); + var e = new jQuery.fx( this, jQuery.speed(speed,callback), p ); if ( prop[p].constructor == Number ) e.custom( e.cur(), prop[p] ); else e[ prop[p] ]( prop ); } + }); }, @@ -321,7 +331,7 @@ jQuery.extend({ } }, - speed: function(s,o,i) { + speed: function(s,o) { o = o || {}; if ( o.constructor == Function ) @@ -337,9 +347,6 @@ jQuery.extend({ if ( o.oldComplete && o.oldComplete.constructor == Function ) o.oldComplete.apply( this ); }; - - if ( i > 0 ) - o.complete = null; return o; }, @@ -373,7 +380,8 @@ jQuery.extend({ // The users options z.o = { duration: options.duration || 400, - complete: options.complete + complete: options.complete, + step: options.step }; // The element @@ -384,8 +392,11 @@ jQuery.extend({ // Simple function for setting a style value z.a = function(){ + if ( options.step ) + options.step.apply( elem, [ z.now ] ); + if ( prop == "opacity" ) { - if (z.now == 1) z.now = 0.9999; + if (jQuery.browser.mozilla && z.now == 1) z.now = 0.9999; if (window.ActiveXObject) y.filter = "alpha(opacity=" + z.now*100 + ")"; else @@ -394,6 +405,7 @@ jQuery.extend({ // My hate for IE will never die } else if ( parseInt(z.now) ) y[prop] = parseInt(z.now) + "px"; + y.display = "block"; }; @@ -404,7 +416,8 @@ jQuery.extend({ // Get the current size z.cur = function(){ - return parseFloat( jQuery.curCSS(z.el, prop) ) || z.max(); + var r = parseFloat( jQuery.curCSS(z.el, prop) ); + return r && r > -10000 ? r : z.max(); }; // Start an animation from one number to another @@ -442,7 +455,7 @@ jQuery.extend({ z.o.hide = true; // Begin the animation - z.custom(z.cur(),0); + z.custom(z.el.orig[prop], 0); }; // IE has trouble with opacity if it does not have layout @@ -454,7 +467,6 @@ jQuery.extend({ z.el.oldOverflow = jQuery.css( z.el, "overflow" ); // Make sure that nothing sneaks out - //if ( z.el.oldOverlay == "visible" ) y.overflow = "hidden"; // Each step of an animation @@ -469,24 +481,37 @@ jQuery.extend({ z.now = lastNum; z.a(); - // Hide the element if the "hide" operation was done - if ( z.o.hide ) y.display = 'none'; - - // Reset the overflow - y.overflow = z.el.oldOverflow; + z.el.curAnim[ prop ] = true; + + var done = true; + for ( var i in z.el.curAnim ) + if ( z.el.curAnim[i] !== true ) + done = false; + + if ( done ) { + // Reset the overflow + y.overflow = z.el.oldOverflow; + + // Hide the element if the "hide" operation was done + if ( z.o.hide ) + y.display = 'none'; + + // Reset the property, if the item has been hidden + if ( z.o.hide ) { + for ( var p in z.el.curAnim ) { + y[ p ] = z.el.orig[p] + ( p == "opacity" ? "" : "px" ); + + // set its height and/or width to auto + if ( p == 'height' || p == 'width' ) + jQuery.setAuto( z.el, p ); + } + } + } // If a callback was provided, execute it - if( z.o.complete && z.o.complete.constructor == Function ) + if( done && z.o.complete && z.o.complete.constructor == Function ) // Execute the complete function z.o.complete.apply( z.el ); - - // Reset the property, if the item has been hidden - if ( z.o.hide ) - y[ prop ] = z.el.orig[ prop ].constructor == Number && prop != "opacity" ? - z.el.orig[prop] + "px" : z.el.orig[prop]; - - // set its height and/or width to auto - jQuery.setAuto( z.el, prop ); } else { // Figure out where in the animation we are and set the number var p = (t - this.startTime) / z.o.duration;