Bootstrap collapse - go to top of the open item?

前端 未结 6 1680
孤街浪徒
孤街浪徒 2021-02-01 07:48

I\'m using the bootstrap collapse function, but when I open an element which has a lot of content, then open the next element, it jumps down and doesn\'t go to the top of the op

6条回答
  •  旧时难觅i
    2021-02-01 08:21

    $(".accordion-body").on("shown", function () {
    var id = $(this).attr('id');
    $('html, body').animate({scrollTop: $('#'+id).offset().top + -50}, 1000);
    });
    });
    

    Simple Example. The ".top + -50" is Minus 50px from the top of the element allowing some padding at the top.

提交回复
热议问题