Questions tagged [slideup]

An effect of hiding element with a sliding motion.

Usually refers to jQuery/JavaScript animated hiding of element with a sliding motion.

slideUp() in jQuery docs.

Some examples are:

 $('#element').slideUp('slow', function() {
   // Animation complete.
 });
483 questions
61
votes
6 answers

Slidedown and slideup layout with animation

how can I display a layout in the center with slideUp when I press the button, and press again to hide ... slideDown in ANDROID help me with that, thnkss
EliasM
  • 737
  • 1
  • 6
  • 14
32
votes
6 answers

Slide down effect on ExpandableListView

Is it possible to have a nice slide up/down effect when expanding/collapsing an item of a ExpandableListView? If yes, how? Thanks in advance.
thomaus
  • 6,170
  • 8
  • 45
  • 63
30
votes
6 answers

jQuery: FadeOut then SlideUp

If an item is being deleted then I would like to fade it out and slide the other elements up to fill the empty space. Now, when I use fadeOut() the item doesn't have a height at the end which results in the other items jumping up (instead of sliding…
bart
  • 14,958
  • 21
  • 75
  • 105
24
votes
3 answers

jQuery - Wait till end of SlideUp()

How can I wait till the end of the jQuery function slideUp() before continuing the script?