Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to both slide/fade a div simultaneously on a hover, then slide/fade it out at the end of the hover, using JQuery. The slide/fade out work properly, but the slide/fade in doesn't. It just slides in without the fade. Any ideas?

#myDiv {
    display: none;
    height: 110px;
    position: absolute;
    bottom: 0px; left: 0px;
}

$('#anotherDiv').hover(function() {
    $('#myDiv').stop(true, true).slideDown(slideDuration).fadeIn({ duration: slideDuration, queue: false });
}, function() {
    $('#myDiv').stop(true, true).slideUp(slideDuration).fadeOut({ duration: slideDuration, queue: false });
});
share|improve this question

3 Answers

up vote 14 down vote accepted

The answer is that once either effects activate, it takes the inline css property "display=none" off of the element. These hide effects require the display property to be set to "none". So, just rearrange the order of methods and add a css-modifier in the chain between fade and slide.

$('#anotherDiv').hover(function() {
    $('#myDiv').stop(true, true).fadeIn({ duration: slideDuration, queue: false }).css('display', 'none').slideDown(slideDuration);    
}, function() {
    $('#myDiv').stop(true, true).fadeOut({ duration: slideDuration, queue: false }).slideUp(slideDuration);
});
share|improve this answer
Thanks! For the explanation and the code. This worked marvelously and didn't somehow risk toggling the wrong way as some other solutions (which I could generate only on rare occasion in Chrome). Thanks again. – dchang Sep 22 '11 at 23:00

idk if this helps or not, but you can skip the slideUp and fadeIn shortcuts and just use animate:

http://jsfiddle.net/bZXjv/

$('#anotherDiv').hover(function() {
    $('#myDiv')
        .stop(true, true)
        .animate({
            height:"toggle",
            opacity:"toggle"
        },slideDuration);
});
share|improve this answer

jQuery's slide messes with opacity when it start, and fadeIn messes with toggling the height.

The best thing you can do is to write your own animation for it, something in line with:

    var slideDuration = 1000;

    var slideInAnimation = {        
        opacity: 1,    
        height: 'toggle'
    }

    var slideOutAnimation = {       
        opacity: 0,    
        height: 'toggle'
    }

    $('#anotherDiv').hover(function() {
        $('#myDiv').css("opacity", "0").animate(slideInAnimation, slideDuration);
    }, function() {
        $('#myDiv').animate(slideOutAnimation, slideDuration);
    });
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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