jQuery在动画之间切换高度

时间:2018-12-19 06:11:35

标签: jquery html css jquery-animate

我试图在一个班级的两个高度之间切换并使它们动画化,我尝试了以下方法:

$('.architectural-films').bind('click', function(){
            $(".section1").toggle(function(){
                             $(".section1").animate({height:"500px"});
                        },function(){
                             $(".section1").animate({height:"0px"});
                        });
            return false;
        });

但是它根本不起作用,没有动画,并且高度没有变化。

这是该类的CSS

.section1{
height: 0px;
}

这是html

<section class="section1">

<!--content here -->
</section>

我在做什么错了?

1 个答案:

答案 0 :(得分:3)

您可以使用简单的CSS和.toggleClass

$('.architectural-films').bind('click', function(){
    $(".section1").toggleClass("toggle");
});
.section1{
background:red;
height: 0px;
transition: height 0.25s ease-out;
}
.toggle{
   height: 500px;
    transition: height 0.25s ease-in;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<section class="section1">

<!--content here -->
</section>
<button class="architectural-films">click me</button>