X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Ffx.js;h=40bbc61edace1fb541bff244c9b8f0af19c8c200;hb=b1e161466cb7f68bc7447ffd580395764715d9ca;hp=626227dbb28ce374131a4e745c795b6f16ff3d57;hpb=b2583a7526c0051f7c5f11a25e0cbaeb13930fc6;p=jquery.git diff --git a/src/fx.js b/src/fx.js index 626227d..40bbc61 100644 --- a/src/fx.js +++ b/src/fx.js @@ -1,11 +1,25 @@ -var elemdisplay = {}; +var elemdisplay = {}, + 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( fxAttrs.concat.apply([], fxAttrs.slice(0,num)), function(){ + obj[ this ] = type; + }); + return obj; +} jQuery.fn.extend({ show: function(speed,callback){ if ( speed ) { - return this.animate({ - height: "show", width: "show", opacity: "show" - }, 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"); @@ -39,9 +53,7 @@ jQuery.fn.extend({ hide: function(speed,callback){ if ( speed ) { - return this.animate({ - height: "hide", width: "hide", opacity: "hide" - }, 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"); @@ -66,9 +78,7 @@ jQuery.fn.extend({ var state = bool ? fn : jQuery(this).is(":hidden"); jQuery(this)[ state ? "show" : "hide" ](); }) : - this.animate({ - height: "toggle", width: "toggle", opacity: "toggle" - }, fn, fn2); + this.animate(genFx("toggle", 3), fn, fn2); }, fadeTo: function(speed,to,callback){ @@ -165,9 +175,9 @@ jQuery.fn.extend({ // Generate shortcuts for custom animations jQuery.each({ - slideDown: { height:"show" }, - slideUp: { height: "hide" }, - slideToggle: { height: "toggle" }, + slideDown: genFx("show", 1), + slideUp: genFx("hide", 1), + slideToggle: genFx("toggle", 1), fadeIn: { opacity: "show" }, fadeOut: { opacity: "hide" } }, function( name, props ){