up vote 13 down vote favorite
13
share [g+] share [fb]

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 up nicely).

How can I slideUp() and element right after fadeOut()?

link|improve this question

69% accept rate
I rewrote mine so it's a toggle now. – Powerlord Apr 9 '09 at 16:05
It should be noted that the reason fadeOut causes a jump is that after the opacity is animated to 0, the display is set to none. fadeTo doesn't do this which is why the below solutions work. – Rupert Jul 13 '11 at 7:40
feedback

4 Answers

up vote 24 down vote accepted
jQuery.fn.fadeThenSlideToggle = function(speed, easing, callback) {
  if (this.is(":hidden")) {
    return this.slideDown(speed, easing).fadeTo(speed, 1, easing, callback);
  } else {
    return this.fadeTo(speed, 0, easing).slideUp(speed, easing, callback);
  }
};

I tested it on JQuery 1.3.2, and it does work.

Edit: This is the code I called it from. #slide-then-fade is the ID of a button element, article-text is a class on a div tag:

$(document).ready(function() {
  $('#slide-then-fade').click(function() {
    $('.article-text').fadeThenSlideToggle();
  });
});

Edit 2: Modified to use the built-in slideUp.

Edit 3: Rewritten as a toggle, and using fadeTo

link|improve this answer
I had to drop the 'easing' parameter in order to get the 'callback' to work. – bart Apr 9 '09 at 19:27
Ah, OK. As I recall, the slides and fades have different arguments for easing, so the easing argument was useless anyway. – Powerlord Apr 10 '09 at 13:14
feedback

Sounds like it would be better to use the jQuery fadeTo command

 $(function() {

     $("#myButton").click(function() {
         $("#myDiv").fadeTo("slow", 0.00, function(){ //fade
             $(this).slideUp("slow", function() { //slide up
                 $(this).remove(); //then remove from the DOM
             });
         });

     });

});

Working Demo here.

By performing each command in the callback function of the preceding command, the command will not run until the previous one completes; a "jump" occurs when the element is removed from the DOM without waiting for the slideUp to complete.

link|improve this answer
nice demo, wish more folks would do it. – redsquare Apr 9 '09 at 16:54
Wish stackoverflow would provide a sandbox – Nick Berardi Apr 9 '09 at 17:15
Thanks. I discovered jsbin here on stackoverflow and have been using it since to provide workable demos in answers - jsbin.com – Russ Cam Apr 9 '09 at 17:50
seems unnecessary to use 0.01. this works fine with 0 without changing your version of jQuery (at least in Chrome) jsbin.com/avebe/16/edit – Simon_Weaver Feb 9 '11 at 2:41
@Simon - and in Firefox 3.6.13 and in IE8 too. It does seem uneccessary, will update answer. – Russ Cam Feb 9 '11 at 8:43
show 2 more comments
feedback

Can't you chain it?

$('myelement').fadeOut().slideUp();

EDIT:

Maybe this will help instead?

link|improve this answer
No it fades to nothing and then does a hard move on the DOM element. – Nick Berardi Apr 9 '09 at 14:54
Ah I see, that is a pain. – Kezzer Apr 9 '09 at 14:55
No, it jumps up at the end of the fadeOut(). – bart Apr 9 '09 at 14:56
Your link shows how to fadeOut and SlideUp at the same time. I would slideUp after fadeOut has ended. – bart Apr 9 '09 at 15:02
feedback

The fadeOut function takes a second optional argument of a callback function, so you should be able to do something like this:

$('elementAbove').fadeOut(500, function() {
    $('elementBelow').slideUp();
});

EDIT: forgot to add the speed of the fadeOut as the first parameter

link|improve this answer
It still jumps up :( – bart Apr 9 '09 at 15:08
What is the HTML and CSS that you are manipulating? – Ian Oxley Apr 9 '09 at 16:22
it doesn't work because you esentially did the same thing as chaining. you need to fade to 1% first and then roll up – Nick Berardi Apr 9 '09 at 17:14
I'd disagree that this is the same thing as chaining: with chaining you could end up with both animations firing simultaneously due to the way timeouts; using a callback for the slideUp() should in theory ensure that it fires only after fadeOut has finished executing. – Ian Oxley Apr 9 '09 at 18:56
1  
@Nick Berardi: I see what you mean about fading to 1% - I've just tried a quick demo and using fadeTo(speed, 0.1, callback) seems to do the trick. – Ian Oxley Apr 9 '09 at 19:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.