我们可以折叠侧边栏菜单上的RdashAngular ?例如,在www.example.com上http://rdash.github.io/#/。在Dashboard下我们可以找到Profile,Graphic,Manage Data.在Tables下我们可以找到Statistic,Report.
Dashboard
Profile
Graphic
Manage Data
Tables
Statistic
Report
rqenqsqc1#
你可以这样做
<div class="sidebar col-xs-2" ng-class="{ 'col-xs-1': open, 'toggleOn': open, 'toggleOff': !open }"> <button ng-click="open = !open">Toggle</button> </div> .sidebar { color: #fff; height: 100vh; } .toggleOn { transition: width 1s; -webkit-transition: width 1s; -moz-transition: width 1s; -o-transition: width 1s; } .toggleOff { transition: width 1s; -webkit-transition: width 1s; -moz-transition: width 1s; -o-transition: width 1s; }
1条答案
按热度按时间rqenqsqc1#
你可以这样做