Collapsing Sidebar with Bootstrap

前端 未结 5 1990
天命终不由人
天命终不由人 2020-12-02 03:59

I just visited this page http://www.elmastudio.de/ and wondered if it is possible to build the left sidebar collapse with Bootstrap 3.

Code to collapse the sidebar f

5条回答
  •  有刺的猬
    2020-12-02 04:24

    http://getbootstrap.com/examples/offcanvas/

    This is the official example, may be better for some. It is under their Experiments examples section, but since it is official, it should be kept up to date with the current bootstrap release.

    Looks like they have added an off canvas css file used in their example:

    http://getbootstrap.com/examples/offcanvas/offcanvas.css

    And some JS code:

    $(document).ready(function () {
      $('[data-toggle="offcanvas"]').click(function () {
        $('.row-offcanvas').toggleClass('active')
      });
    });
    

提交回复
热议问题