我想創建一個使用基礎6的非帆布畫布;我的想法是,我有兩個基本的專欄應用程序,然後我試圖隱藏在左邊的那個只在屏幕很小時使用非帆布效果,但首先我需要得到這個工作:col 2 get show full屏幕寬度和第一列應該只在屏幕上激活。在桌面屏幕上應該只顯示一個屏幕上的兩列。基礎垂直(分割佈局)非帆布覆蓋整個屏幕並僅在移動屏幕上
這個想法是有內容,而不僅僅是基礎示例中的菜單。 我如何獲得描述的效果?
<body>
<div class="off-canvas-wrapper">
<div class="off-canvas-wrapper-inner" data-off-canvas-wrapper>
<div class="off-canvas position-left" id="offCanvas" data-off-canvas>
<!-- Close button -->
<button class="close-button" aria-label="Close menu" type="button" data-close>
<span aria-hidden="true">×</span>
</button>
<!-- Page1 content -->
</div>
<div class="off-canvas-content" data-off-canvas-content>
<!-- Page2 content -->
</div>
</div>
</div>
</body>
檢查這個代碼: https://jsfiddle.net/q1e45fzz/16/
我想要實現關閉帆布概念http://www.lukew.com/ff/entry.asp?1514解釋 –