13

How can I recreate jQuery's $.slideDown effect using the $.animate function?

Jimmie Lin
  • 2,179
  • 2
  • 22
  • 35
Alex
  • 64,868
  • 164
  • 416
  • 621

1 Answers1

30

Animate "height", "marginTop", "marginBottom", "paddingTop", and "paddingBottom" to "show".

For example:

$(...).animate({
    "height": "show",
    "marginTop": "show",
    "marginBottom": "show",
    "paddingTop": "show",
    "paddingBottom": "show"
});

Source: jQuery source code.

fxAttrs = [
    // height animations
    [ "height", "marginTop", "marginBottom", "paddingTop", "paddingBottom" ],
    // width animations
    [ "width", "marginLeft", "marginRight", "paddingLeft", "paddingRight" ],
    // opacity animations
    [ "opacity" ]
];
...

jQuery.each({
    slideDown: genFx("show", 1),
    slideUp: genFx("hide", 1),
    slideToggle: genFx("toggle", 1),
    fadeIn: { opacity: "show" },
    fadeOut: { opacity: "hide" }
}, function( name, props ) {
    jQuery.fn[ name ] = function( speed, callback ) {
        return this.animate( props, speed, callback );
    };
});
...

function genFx( type, num ) {
    var obj = {};

    jQuery.each( fxAttrs.concat.apply([], fxAttrs.slice(0,num)), function() {
        obj[ this ] = type;
    });

    return obj;
}
Eng.Fouad
  • 111,301
  • 67
  • 311
  • 403
SLaks
  • 837,282
  • 173
  • 1,862
  • 1,933