javascript - Crossfade Two divs Using jQuery - Stack Overflow

I have a multi-step webform on a website. When a person clicks next the div one fades out as div two fa

I have a multi-step webform on a website. When a person clicks next the div one fades out as div two fades in. The problem I am seeing is while div one fades out div two fades in below div one and then jumps once div one fades out.

How do I prevent this and have them actually crossfade?

HTML

<div class="step-1"> 
  <!-- CODE -->
</div >

<div class="step-2"> 
  <!-- THIS DIV IS HIDDEN TO BEGIN WITH -->
</div >

JS

$( ".step-1-next" ).on( "click", function() {
    $( ".step-1" ).fadeOut( "slow" );
    $( ".step-2" ).fadeIn( "slow" );
    return false;
});

I have a multi-step webform on a website. When a person clicks next the div one fades out as div two fades in. The problem I am seeing is while div one fades out div two fades in below div one and then jumps once div one fades out.

How do I prevent this and have them actually crossfade?

HTML

<div class="step-1"> 
  <!-- CODE -->
</div >

<div class="step-2"> 
  <!-- THIS DIV IS HIDDEN TO BEGIN WITH -->
</div >

JS

$( ".step-1-next" ).on( "click", function() {
    $( ".step-1" ).fadeOut( "slow" );
    $( ".step-2" ).fadeIn( "slow" );
    return false;
});
Share Improve this question asked Feb 9, 2014 at 0:59 L84L84 46.3k59 gold badges181 silver badges259 bronze badges 3
  • @snowburnt - You should repost your answer. Your answer works and looks better than the other. – L84 Commented Feb 9, 2014 at 1:17
  • Done, the other post was pretty nice, if you adjust his fiddle so both the tops are the same one will fadeOut at the same time as the other and they will occupy the same space. Mine will force the second one to wait for the callback from the fadeOut before the fadeIn is called. – Snowburnt Commented Feb 9, 2014 at 3:13
  • @Snowburnt - Agreed but it caused problems in my case, though I am unsure why. Your solution works well, even with the pause. – L84 Commented Feb 9, 2014 at 3:20
Add a ment  | 

2 Answers 2

Reset to default 6

Try this:

$( ".step-1-next" ).on( "click", function() {
    $( ".step-1" ).fadeOut( "slow", function(){
       $( ".step-2" ).fadeIn( "slow" );
      });
    });

This will cause the fade in to wait to be called until the fade out is pleted.

Working example http://jsfiddle/JUMJY/

The reason the step-2 div is jumping into the step-1 position once step-1 is fully hidden, is because of the positioning. Or lack thereof. To do this, you would have to use either position absolute, or position fixed. I used absolute in the example I created for you.

.step-1 {
    background: blue;
    top: 20px;
    left: 20px;

}

.step-2 {
    background: red;
    display: none;
    top: 130px;
    left: 20px;
}

div {
    width: 100px; 
    height: 100px;
    margin: 20px;
    position: absolute;
}

button {
    position: absolute;
    right: 50px;
    top: 0;
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743824047a4513287.html

相关推荐

  • javascript - Crossfade Two divs Using jQuery - Stack Overflow

    I have a multi-step webform on a website. When a person clicks next the div one fades out as div two fa

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信