1.BootStrap概念: 一個前端開發的框架,Bootstrap,來自 Twitter,是目前很受歡迎的前端框架。Bootstrap 是基於 HTML、CSS、JavaScript 的,它簡潔靈活,使得 Web 開發更加快捷。
框架:一個半成品軟件,開發人員可以在框架基礎上,在進行開發,簡化編碼。
好處:
1. 定義了很多的css樣式和js插件。我們開發人員直接可以使用這些樣式和插件得到豐富的頁面效果。
2. 響應式布局。
同一套頁面可以兼容不同分辨率的設備。
2. 快速入門
(1)下載Bootstrap
(2)在項目中將這三個文件夾復制
(3)創建html頁面,引入必要的資源文件到當前的工程目錄
Bootstrap使用模板:
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- 上述3個meta標簽*必須*放在最前面,任何其他內容都*必須*跟隨其后! --> <title>Bootstrap hello world</title> <!-- Bootstrap --> <link href="bootstrap-3.3.7-dist/css/bootstrap.min.css" rel="stylesheet"> <!-- HTML5 shim 和 Respond.js 是為了讓 IE8 支持 HTML5 元素和媒體查詢(media queries)功能 --> <!-- 警告:通過 file:// 協議(就是直接將 html 頁面拖拽到瀏覽器中)訪問頁面時 Respond.js 不起作用 --> <!--[if lt IE 9]> <![endif]--> </head> <body> <h1>你好,世界!</h1> <!-- jQuery (Bootstrap 的所有 JavaScript 插件都依賴 jQuery,所以必須放在前邊) --> <script src="bootstrap-3.3.7-dist/js/jquery-3.2.1.min.js"></script> <!-- 加載 Bootstrap 的所有 JavaScript 插件。你也可以根據需要只加載單個插件。 --> <script src="bootstrap-3.3.7-dist/js/bootstrap.min.js"></script> </body> </html>
3.響應式布局
同一套頁面可以兼容不同分辨率的設備。
實現:依賴於柵格系統:將一行平均分成12個格子,可以指定元素占幾個格子
步驟:
(1) 定義容器。相當於之前的table、
* 容器分類:
1. container:兩邊留白
2. container-fluid:每一種設備都是100%寬度
(2)定義行。相當於之前的tr 樣式:row
(3)定義元素。指定該元素在不同的設備上,所占的格子數目。樣式:col-設備代號-格子數目
* 設備代號:
1. xs:超小屏幕 手機 (<768px):col-xs-12
2. sm:小屏幕 平板 (≥768px)
3. md:中等屏幕 桌面顯示器 (≥992px)
4. lg:大屏幕 大桌面顯示器 (≥1200px)
* 注意:
(1)一行中如果格子數目超過12,則超出部分自動換行。
(2) 柵格類屬性可以向上兼容。柵格類適用於與屏幕寬度大於或等於分界點大小的設備。
(3) 如果真實設備寬度小於了設置柵格類屬性的設備代碼的最小值,會一個元素沾滿一整行。
4.CSS樣式和JS插件
(1)全局CSS樣式:
<1>按鈕:class="btn btn-default"
<2>圖片:
class="img-responsive":圖片在任意尺寸都占100%
圖片形狀
<img src="..." alt="..." class="img-rounded">:方形
<img src="..." alt="..." class="img-circle"> : 圓形
<img src="..." alt="..." class="img-thumbnail"> :相框
<3>表格
* table
* table-bordered
* table-hover
<4>表單
* 給表單項添加:class="form-control"
案例:
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- 上述3個meta標簽*必須*放在最前面,任何其他內容都*必須*跟隨其后! --> <title>Bootstrap hello world</title> <!-- Bootstrap --> <link href="bootstrap-3.3.7-dist/css/bootstrap.min.css" rel="stylesheet"> <!-- HTML5 shim 和 Respond.js 是為了讓 IE8 支持 HTML5 元素和媒體查詢(media queries)功能 --> <!-- 警告:通過 file:// 協議(就是直接將 html 頁面拖拽到瀏覽器中)訪問頁面時 Respond.js 不起作用 --> <!--[if lt IE 9]> <![endif]--> </head> <body> <a class="btn btn-default" href="#" role="button">Link</a> <button class="btn btn-default" type="submit">Button</button> <input class="btn btn-default" type="button" value="Input"> <input class="btn btn-default" type="submit" value="Submit"> <br> <!-- Standard button --> <button type="button" class="btn btn-default">(默認樣式)Default</button> <!-- Provides extra visual weight and identifies the primary action in a set of buttons --> <button type="button" class="btn btn-primary">(首選項)Primary</button> <!-- Indicates a successful or positive action --> <button type="button" class="btn btn-success">(成功)Success</button> <!-- Contextual button for informational alert messages --> <button type="button" class="btn btn-info">(一般信息)Info</button> <!-- Indicates caution should be taken with this action --> <button type="button" class="btn btn-warning">(警告)Warning</button> <!-- Indicates a dangerous or potentially negative action --> <button type="button" class="btn btn-danger">(危險)Danger</button> <!-- Deemphasize a button by making it look like a link while maintaining button behavior --> <button type="button" class="btn btn-link">(鏈接)Link</button> <img src="img/banner_1.jpg" class="img-responsive" > <table class="table table-bordered table-hover" > <tr> <th>編號</th> <th>姓名</th> <th>年齡</th> </tr> <tr> <td>1</td> <td>lucky</td> <td>23</td> </tr> <tr> <td>2</td> <td>linda</td> <td>26</td> </tr> <tr> <td>3</td> <td>bob</td> <td>29</td> </tr> </table> <!-- jQuery (Bootstrap 的所有 JavaScript 插件都依賴 jQuery,所以必須放在前邊) --> <script src="bootstrap-3.3.7-dist/js/jquery-3.2.1.min.js"></script> <!-- 加載 Bootstrap 的所有 JavaScript 插件。你也可以根據需要只加載單個插件。 --> <script src="bootstrap-3.3.7-dist/js/bootstrap.min.js"></script> </body> </html>
效果圖:
(2)組件:
導航條(結合https://v3.bootcss.com/components/#navbar)
分頁條
(3)插件:
輪播圖(javascript--->carousel)
5.綜合應用案例
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- 上述3個meta標簽*必須*放在最前面,任何其他內容都*必須*跟隨其后! --> <title>Bootstrap hello world</title> <!-- Bootstrap --> <link href="bootstrap-3.3.7-dist/css/bootstrap.min.css" rel="stylesheet"> <!-- HTML5 shim 和 Respond.js 是為了讓 IE8 支持 HTML5 元素和媒體查詢(media queries)功能 --> <!-- 警告:通過 file:// 協議(就是直接將 html 頁面拖拽到瀏覽器中)訪問頁面時 Respond.js 不起作用 --> <!--[if lt IE 9]> <![endif]--> <style> .paddingtop{ padding-top: 10px; } .search-btn{ float: left; border: 1px solid #ffc900; background-color: #ffc900; width: 90px; height: 35px; text-align: center; line-height: 35px; margin-top: 15px; } .search-input{ float: left; border: 2px solid #ffc900; width: 400px; height: 35px; padding-left: 5px; margin-top: 15px; } .jx{ border-bottom: 2px solid #ffc900; padding-bottom: 5px; } .company{ height: 40px; background-color: #ffd026; text-align: center; line-height: 40px; } </style> </head> <body> <!--頁眉部分--> <header class="container-fluid"> <div class="row"> <img src="img/top_banner.jpg" class="img-responsive"> </div> <div class="row paddingtop"> <div class="col-md-3"> <img src="img/logo.jpg" class="img-responsive"> </div> <div class="col-md-5"> <input placeholder="請輸入文字" class="search-input"> <a href="#" class="search-btn">搜索</a> </div> <div class="col-md-4"> <img src="img/hotel_tel.png" class="img-responsive"> </div> </div> <!--導航欄--> <div class="row"> <nav class="navbar navbar-default"> <div class="container-fluid"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="#">首頁</a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav"> <li class="active"><a href="#">Link <span class="sr-only">(current)</span></a></li> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> </ul> </div><!-- /.navbar-collapse --> </div><!-- /.container-fluid --> </nav> </div> <!--輪播圖--> <div class="row"> <div id="carousel-example-generic" class="carousel slide" data-ride="carousel"> <!-- Indicators --> <ol class="carousel-indicators"> <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li> <li data-target="#carousel-example-generic" data-slide-to="1"></li> <li data-target="#carousel-example-generic" data-slide-to="2"></li> </ol> <!-- Wrapper for slides --> <div class="carousel-inner" role="listbox"> <div class="item active"> <img src="img/banner_1.jpg" alt="..."> <div class="carousel-caption"> ... </div> </div> <div class="item"> <img src="img/banner_2.jpg" alt="..."> <div class="carousel-caption"> ... </div> </div> <div class="item"> <img src="img/banner_3.jpg" alt="..."> <div class="carousel-caption"> ... </div> </div> </div> <!-- Controls --> <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> <span class="sr-only">Previous</span> </a> <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next"> <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> <span class="sr-only">Next</span> </a> </div> </div> </header> <!--主體部分--> <div class="container"> <div class="row jx"> <img src="img/icon_5.jpg" > <span>黑馬精選</span> </div> <div class="row paddingtop"> <div class="col-md-3"> <div class="thumbnail"> <img src="img/jiangxuan_3.jpg" alt=""> <p>上海直飛三亞5天4晚自由行(春節預售+親子/蜜月/休閑游首選+豪華酒店任選+接送機)</p> <font color="red">¥ 699</font> </div> </div> <div class="col-md-3"> <div class="thumbnail"> <img src="img/jiangxuan_3.jpg" alt=""> <p>上海直飛三亞5天4晚自由行(春節預售+親子/蜜月/休閑游首選+豪華酒店任選+接送機)</p> <font color="red">¥ 699</font> </div> </div> <div class="col-md-3"> <div class="thumbnail"> <img src="img/jiangxuan_3.jpg" alt=""> <p>上海直飛三亞5天4晚自由行(春節預售+親子/蜜月/休閑游首選+豪華酒店任選+接送機)</p> <font color="red">¥ 699</font> </div> </div> <div class="col-md-3"> <div class="thumbnail"> <img src="img/jiangxuan_3.jpg" alt=""> <p>上海直飛三亞5天4晚自由行(春節預售+親子/蜜月/休閑游首選+豪華酒店任選+接送機)</p> <font color="red">¥ 699</font> </div> </div> </div> <div class="row jx"> <img src="img/icon_6.jpg" > <span>國內游</span> </div> <div class="row paddingtop"> <div class="col-md-4"> <img src="img/guonei_1.jpg"> </div> <div class="col-md-8"> <div class="row"> <div class="col-md-4"> <div class="thumbnail"> <img src="img/jiangxuan_3.jpg" alt=""> <p>上海直飛三亞5天4晚自由行(春節預售+親子/蜜月/休閑游首選+豪華酒店任選+接送機)</p> <font color="red">¥ 699</font> </div> </div> <div class="col-md-4"> <div class="thumbnail"> <img src="img/jiangxuan_3.jpg" alt=""> <p>上海直飛三亞5天4晚自由行(春節預售+親子/蜜月/休閑游首選+豪華酒店任選+接送機)</p> <font color="red">¥ 699</font> </div> </div> <div class="col-md-4"> <div class="thumbnail"> <img src="img/jiangxuan_3.jpg" alt=""> <p>上海直飛三亞5天4晚自由行(春節預售+親子/蜜月/休閑游首選+豪華酒店任選+接送機)</p> <font color="red">¥ 699</font> </div> </div> </div> <div class="row"> <div class="col-md-4"> <div class="thumbnail"> <img src="img/jiangxuan_3.jpg" alt=""> <p>上海直飛三亞5天4晚自由行(春節預售+親子/蜜月/休閑游首選+豪華酒店任選+接送機)</p> <font color="red">¥ 699</font> </div> </div> <div class="col-md-4"> <div class="thumbnail"> <img src="img/jiangxuan_3.jpg" alt=""> <p>上海直飛三亞5天4晚自由行(春節預售+親子/蜜月/休閑游首選+豪華酒店任選+接送機)</p> <font color="red">¥ 699</font> </div> </div> <div class="col-md-4"> <div class="thumbnail"> <img src="img/jiangxuan_3.jpg" alt=""> <p>上海直飛三亞5天4晚自由行(春節預售+親子/蜜月/休閑游首選+豪華酒店任選+接送機)</p> <font color="red">¥ 699</font> </div> </div> </div> </div> </div> </div> <!--頁腳部分--> <footer class="container-fluid"> <div class="row"> <img src="img/footer_service.png" class="img-responsive"> </div> <div class="row company"> 江蘇傳智播客教育科技股份有限公司 版權所有Copyright 2006-2018, All Rights Reserved 蘇ICP備16007882 </div> </footer> <!-- jQuery (Bootstrap 的所有 JavaScript 插件都依賴 jQuery,所以必須放在前邊) --> <script src="bootstrap-3.3.7-dist/js/jquery-3.2.1.min.js"></script> <!-- 加載 Bootstrap 的所有 JavaScript 插件。你也可以根據需要只加載單個插件。 --> <script src="bootstrap-3.3.7-dist/js/bootstrap.min.js"></script> </body> </html>
效果圖: