課程
/前端開發
/Bootstrap
/認識響應式布局
<p class="pull-right visible-xs"></p> ?當分辨率小的時候就彈出按鈕出來 ?但是點擊按鈕的時候沒有顯示出列表框list-group出來 ?各位好友求解
2016-12-15
源自:認識響應式布局
正在回答
我查看了例子中的源碼,有個offcanvas.css和offcanvas.js需要加載。
offcanvas.css的源碼:
/*
?* Style tweaks
?* --------------------------------------------------
?*/
/*html,
body {
? overflow-x: hidden; ?Prevent scroll on narrow devices?
}
? padding-top: 70px;
footer {
? padding: 30px 0;
}*/
?* Off Canvas
@media screen and (max-width: 767px) {
? .row-offcanvas {
? ? position: relative;
? ? -webkit-transition: all .25s ease-out;
? ? ? ? ?-o-transition: all .25s ease-out;
? ? ? ? ? ? transition: all .25s ease-out;
? }
? .row-offcanvas-right {
? ? right: 0;
? .row-offcanvas-left {
? ? left: 0;
? .row-offcanvas-right
? .sidebar-offcanvas {
? ? right: -50%; /* 6 columns */
? .row-offcanvas-left
? ? left: -50%; /* 6 columns */
? .row-offcanvas-right.active {
? ? right: 50%; /* 6 columns */
? .row-offcanvas-left.active {
? ? left: 50%; /* 6 columns */
? ? position: absolute;
? ? top: 0;
? ? width: 50%; /* 6 columns */
offcanvas.js的源碼:
$(document).ready(function () {
? $('[data-toggle="offcanvas"]').click(function () {
? ? $('.row-offcanvas').toggleClass('active')
? });
});
在 .html代碼中加載這兩個文件,樣式和行為才能起效。
貼兩個代碼片段,你可以根據這個代碼片段定位到你的代碼,做相應修改:
這里調用了樣式,button調用了data-toggle方法
<div class="container-fluid">
? <div class="row row-offcanvas row-offcanvas-right">
? ? <div class="col-sm-9">
? ? ? <p class="pull-right visible-xs">
? ? ? ? <button class="btn-xs btn btn-primary" data-toggle="offcanvas">Toggle</button>
? ? ? </p>
下面是list-group需要加載的樣式
<div class="col-sm-3 sidebar-offcanvas" id="sidebar">
? ? ? <ul class="list-group">
_Sun_ 提問者
應該使用data-toggle綁定
會彈。。。前面沒點出來
官方這個網站也不會彈出來的,你可以看看
http://getbootstrap.com/examples/offcanvas/
舉報
使用Bootstrap前端框架,本教程讓網站兼容不同終端不再是夢
1 回答最后按鈕點擊效果 點擊 Toggle 和 list-group 出現的效果 沒效果 怎么實現啊
1 回答出現按鈕時右側是怎么隱藏掉的呢
1 回答怎么實現老師沒講到的功能:button按鈕怎么在頁面變小時彈出右邊列表?
2 回答<p class="pull-right visible-xs"></p>,,當分辨率小的時候,,,彈出按鈕出來,,但是點擊按鈕的時候沒有顯示出列表框list出來,,,各位好友求解
2 回答按鈕 。。
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網安備11010802030151號
購課補貼聯系客服咨詢優惠詳情
慕課網APP您的移動學習伙伴
掃描二維碼關注慕課網微信公眾號
2017-03-19
我查看了例子中的源碼,有個offcanvas.css和offcanvas.js需要加載。
offcanvas.css的源碼:
/*
?* Style tweaks
?* --------------------------------------------------
?*/
/*html,
body {
? overflow-x: hidden; ?Prevent scroll on narrow devices?
}
body {
? padding-top: 70px;
}
footer {
? padding: 30px 0;
}*/
/*
?* Off Canvas
?* --------------------------------------------------
?*/
@media screen and (max-width: 767px) {
? .row-offcanvas {
? ? position: relative;
? ? -webkit-transition: all .25s ease-out;
? ? ? ? ?-o-transition: all .25s ease-out;
? ? ? ? ? ? transition: all .25s ease-out;
? }
? .row-offcanvas-right {
? ? right: 0;
? }
? .row-offcanvas-left {
? ? left: 0;
? }
? .row-offcanvas-right
? .sidebar-offcanvas {
? ? right: -50%; /* 6 columns */
? }
? .row-offcanvas-left
? .sidebar-offcanvas {
? ? left: -50%; /* 6 columns */
? }
? .row-offcanvas-right.active {
? ? right: 50%; /* 6 columns */
? }
? .row-offcanvas-left.active {
? ? left: 50%; /* 6 columns */
? }
? .sidebar-offcanvas {
? ? position: absolute;
? ? top: 0;
? ? width: 50%; /* 6 columns */
? }
}
offcanvas.js的源碼:
$(document).ready(function () {
? $('[data-toggle="offcanvas"]').click(function () {
? ? $('.row-offcanvas').toggleClass('active')
? });
});
在 .html代碼中加載這兩個文件,樣式和行為才能起效。
貼兩個代碼片段,你可以根據這個代碼片段定位到你的代碼,做相應修改:
這里調用了樣式,button調用了data-toggle方法
<div class="container-fluid">
? <div class="row row-offcanvas row-offcanvas-right">
? ? <div class="col-sm-9">
? ? ? <p class="pull-right visible-xs">
? ? ? ? <button class="btn-xs btn btn-primary" data-toggle="offcanvas">Toggle</button>
? ? ? </p>
下面是list-group需要加載的樣式
<div class="col-sm-3 sidebar-offcanvas" id="sidebar">
? ? ? <ul class="list-group">
2017-01-26
應該使用data-toggle綁定
2017-01-26
會彈。。。前面沒點出來
2017-01-26
官方這個網站也不會彈出來的,你可以看看
http://getbootstrap.com/examples/offcanvas/