Collapsing Sidebar with Bootstrap

前端 未结 5 2005
天命终不由人
天命终不由人 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:43

    Via Angular: using ng-class of Angular, we can hide and show the side bar.

    http://jsfiddle.net/DVE4f/359/

    Sidebar

    .

    function AppCtrl($scope) {
        $scope.showgraphSidebar = false;
        $scope.toggle = function() {
            $scope.showgraphSidebar = !$scope.showgraphSidebar;
        }
    }
    

提交回复
热议问题