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.
 });
479 questions
50
votes
5 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
  • 595
  • 1
  • 4
  • 11
31
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
  • 5,780
  • 8
  • 42
  • 62
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
  • 13,952
  • 20
  • 65
  • 93
23
votes
2 answers

jQuery - Wait till end of SlideUp()

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