JS收缩展开效果

        // 收缩展开效果
        $(document).ready(function () {
            $(".box h2").toggle(function () {
                $(this).next(".text").animate({ height: 'toggle', opacity: 'toggle' }, "slow");
            }, function () {
                $(this).next(".text").animate({ height: 'toggle', opacity: 'toggle' }, "slow");
            });
        });
 <div class="box" id="ZPDIV" runat="server">
        <h2>收缩装配规范表信息</h2>
 </div>
posted @ 2017-11-27 13:32  TTonlyV5  阅读(244)  评论(0编辑  收藏  举报