X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Ffx.js;h=c949bdc6a956cb33c35d7a9f08bc9cc9b94a781a;hb=72cf42bcbd4f7dc351d313c65d8bce113981d159;hp=6c0375565aac8f2284eb83ace4dca017ced9ae63;hpb=cc66e6affea6486cadb0d1514673a410997e11cf;p=jquery.git diff --git a/src/fx.js b/src/fx.js index 6c03755..c949bdc 100644 --- a/src/fx.js +++ b/src/fx.js @@ -1,11 +1,17 @@ var elemdisplay = {}, - fxHeight = [ "height", "marginTop", "marginBottom", "paddingTop", "paddingBottom" ], - fxWidth = [ "width", "marginLeft", "marginRight", "paddingLeft", "paddingRight" ], - fxOpacity = [ "opacity" ]; - -function genFx( type, width, height, extra ){ + timerId, + fxAttrs = [ + // height animations + [ "height", "marginTop", "marginBottom", "paddingTop", "paddingBottom" ], + // width animations + [ "width", "marginLeft", "marginRight", "paddingLeft", "paddingRight" ], + // opacity animations + [ "opacity" ] + ]; + +function genFx( type, num ){ var obj = {}; - jQuery.each(width.concat( height || [], extra || []), function(){ + jQuery.each( fxAttrs.concat.apply([], fxAttrs.slice(0,num)), function(){ obj[ this ] = type; }); return obj; @@ -14,7 +20,7 @@ function genFx( type, width, height, extra ){ jQuery.fn.extend({ show: function(speed,callback){ if ( speed ) { - return this.animate( genFx("show", fxHeight, fxWidth, fxOpacity), speed, callback); + return this.animate( genFx("show", 3), speed, callback); } else { for ( var i = 0, l = this.length; i < l; i++ ){ var old = jQuery.data(this[i], "olddisplay"); @@ -38,9 +44,15 @@ jQuery.fn.extend({ elemdisplay[ tagName ] = display; } - this[i].style.display = jQuery.data(this[i], "olddisplay", display); + jQuery.data(this[i], "olddisplay", display); } } + + // Set the display of the elements in a second loop + // to avoid the constant reflow + for ( var i = 0, l = this.length; i < l; i++ ){ + this[i].style.display = jQuery.data(this[i], "olddisplay") || ""; + } return this; } @@ -48,14 +60,20 @@ jQuery.fn.extend({ hide: function(speed,callback){ if ( speed ) { - return this.animate( genFx("hide", fxHeight, fxWidth, fxOpacity), speed, callback); + return this.animate( genFx("hide", 3), speed, callback); } else { for ( var i = 0, l = this.length; i < l; i++ ){ var old = jQuery.data(this[i], "olddisplay"); if ( !old && old !== "none" ) jQuery.data(this[i], "olddisplay", jQuery.css(this[i], "display")); + } + + // Set the display of the elements in a second loop + // to avoid the constant reflow + for ( var i = 0, l = this.length; i < l; i++ ){ this[i].style.display = "none"; } + return this; } }, @@ -73,7 +91,7 @@ jQuery.fn.extend({ var state = bool ? fn : jQuery(this).is(":hidden"); jQuery(this)[ state ? "show" : "hide" ](); }) : - this.animate(genFx("toggle", fxHeight, fxWidth, fxOpacity), fn, fn2); + this.animate(genFx("toggle", 3), fn, fn2); }, fadeTo: function(speed,to,callback){ @@ -170,9 +188,9 @@ jQuery.fn.extend({ // Generate shortcuts for custom animations jQuery.each({ - slideDown: genFx("show", fxHeight), - slideUp: genFx("hide", fxHeight), - slideToggle: genFx("toggle", fxHeight), + slideDown: genFx("show", 1), + slideUp: genFx("hide", 1), + slideToggle: genFx("toggle", 1), fadeIn: { opacity: "show" }, fadeOut: { opacity: "hide" } }, function( name, props ){ @@ -216,7 +234,6 @@ jQuery.extend({ }, timers: [], - timerId: null, fx: function( elem, options, prop ){ this.options = options; @@ -268,10 +285,8 @@ jQuery.fx.prototype = { t.elem = this.elem; - jQuery.timers.push(t); - - if ( t() && jQuery.timerId == null ) { - jQuery.timerId = setInterval(function(){ + if ( t() && jQuery.timers.push(t) && !timerId ) { + timerId = setInterval(function(){ var timers = jQuery.timers; for ( var i = 0; i < timers.length; i++ ) @@ -279,8 +294,8 @@ jQuery.fx.prototype = { timers.splice(i--, 1); if ( !timers.length ) { - clearInterval( jQuery.timerId ); - jQuery.timerId = null; + clearInterval( timerId ); + timerId = undefined; } }, 13); } @@ -346,11 +361,10 @@ jQuery.fx.prototype = { if ( this.options.hide || this.options.show ) for ( var p in this.options.curAnim ) jQuery.attr(this.elem.style, p, this.options.orig[p]); - } - - if ( done ) + // Execute the complete function this.options.complete.call( this.elem ); + } return false; } else {