.slideUp()
.slideUp( [duration ] [, complete ] )Returns: jQuery
Description: Hide the matched elements with a sliding motion.
-
version added: 1.0.slideUp( [duration ] [, complete ] )
-
duration (default:
400
)A string or number determining how long the animation will run. -
completeType: Function()A function to call once the animation is complete, called once per matched element.
-
-
version added: 1.0.slideUp( options )
-
optionsType: PlainObjectA map of additional options to pass to the method.
-
duration (default:
400
)A string or number determining how long the animation will run. -
easing (default:
swing
)Type: StringA string indicating which easing function to use for the transition. -
queue (default:
true
)A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. As of jQuery 1.7, the queue option can also accept a string, in which case the animation is added to the queue represented by that string. When a custom queue name is used the animation does not automatically start; you must call.dequeue("queuename")
to start it. -
specialEasingType: PlainObjectAn object containing one or more of the CSS properties defined by the properties argument and their corresponding easing functions. (version added: 1.4)
-
stepA function to be called for each animated property of each animated element. This function provides an opportunity to modify the Tween object to change the value of the property before it is set.
-
progressA function to be called after each step of the animation, only once per animated element regardless of the number of animated properties. (version added: 1.8)
-
completeType: Function()A function that is called once the animation on an element is complete.
-
startA function to call when the animation on an element begins. (version added: 1.8)
-
doneA function to be called when the animation on an element completes (its Promise object is resolved). (version added: 1.8)
-
failA function to be called when the animation on an element fails to complete (its Promise object is rejected). (version added: 1.8)
-
alwaysA function to be called when the animation on an element completes or stops without completing (its Promise object is either resolved or rejected). (version added: 1.8)
-
-
-
version added: 1.4.3.slideUp( [duration ] [, easing ] [, complete ] )
-
duration (default:
400
)A string or number determining how long the animation will run. -
easing (default:
swing
)Type: StringA string indicating which easing function to use for the transition. -
completeType: Function()A function to call once the animation is complete, called once per matched element.
-
The .slideUp()
method animates the height of the matched elements. This causes lower parts of the page to slide up, appearing to conceal the items. Once the height reaches 0 (or, if set, to whatever the CSS min-height property is), the display
style property is set to none
to ensure that the element no longer affects the layout of the page.
Durations are given in milliseconds; higher values indicate slower animations, not faster ones. The strings 'fast'
and 'slow'
can be supplied to indicate durations of 200
and 600
milliseconds, respectively. If any other string is supplied, or if the duration
parameter is omitted, the default duration of 400
milliseconds is used.