課程
/前端開(kāi)發(fā)
/Bootstrap
/認(rèn)識(shí)響應(yīng)式布局
代碼和老師的一樣,為什么右邊列表擠下去了
2016-12-02
源自:認(rèn)識(shí)響應(yīng)式布局 3-3
正在回答
我查看了例子中的源碼,有個(gè)offcanvas.css和offcanvas.js需要加載。
建議使用chrome瀏覽器,使用開(kāi)發(fā)者工具查看網(wǎng)頁(yè)源碼學(xué)習(xí)
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代碼中加載這兩個(gè)文件,樣式和行為才能起效。
貼兩個(gè)代碼片段,你可以根據(jù)這個(gè)代碼片段定位到你的代碼,做相應(yīng)修改:
這里調(diào)用了樣式,button調(diào)用了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">
慕婉清1576819
老師的代碼不全 ? 還沒(méi) 設(shè)置 按鈕功能 所以是垂直排序
舉報(bào)
使用Bootstrap前端框架,本教程讓網(wǎng)站兼容不同終端不再是夢(mèng)
1 回答右面的列表跑到下面去了
2 回答右邊列表沒(méi)出現(xiàn)了
1 回答如何寫(xiě)一個(gè)下拉列表?
1 回答沒(méi)講完啊,點(diǎn)擊TOGGLE出現(xiàn)右邊列表
3 回答右邊的列表欄為什么直接跑到右邊了?
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢(xún)優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2017-03-19
我查看了例子中的源碼,有個(gè)offcanvas.css和offcanvas.js需要加載。
建議使用chrome瀏覽器,使用開(kāi)發(fā)者工具查看網(wǎng)頁(yè)源碼學(xué)習(xí)
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代碼中加載這兩個(gè)文件,樣式和行為才能起效。
貼兩個(gè)代碼片段,你可以根據(jù)這個(gè)代碼片段定位到你的代碼,做相應(yīng)修改:
這里調(diào)用了樣式,button調(diào)用了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">
2016-12-04
老師的代碼不全 ? 還沒(méi) 設(shè)置 按鈕功能 所以是垂直排序