Bootstrap的使用一般有兩種方法:
- 引用在線的Bootstrap的樣式妇押,
- 將Bootstrap下載到本地進(jìn)行引用涂籽。
在線引用
基本模板如下:
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bootstrap引入</title>
<!-- 新 Bootstrap 核心 CSS 文件 -->
<link rel="stylesheet" >
<!-- jQuery文件撑蒜。務(wù)必在bootstrap.min.js 之前引入 -->
<script src="http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script>
<!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
<script src="http://cdn.bootcss.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
</head>
優(yōu)點(diǎn):不用本地安裝Bootstrap,也不用考慮引用時(shí)的路徑問(wèn)題
缺點(diǎn):一旦在線樣式掛了,那么會(huì)影響整個(gè)頁(yè)面樣式的呈現(xiàn)
本地引用
- 將Bootstrap下載到本地旁涤。
- 直接訪問(wèn)上述代碼中的3個(gè)網(wǎng)址來(lái)獲取代碼
- 去Bootstrap的官網(wǎng) http://v3.bootcss.com/ 和JQuery
的官網(wǎng) http://jquery.com/ 下載相應(yīng)的文件
- 將需要的文件放在項(xiàng)目下,便于引用
bootstrap的目錄結(jié)構(gòu)如下:
bootstrap/
├── css/
│ ├── bootstrap.css
│ ├── bootstrap.css.map
│ ├── bootstrap.min.css
│ ├── bootstrap.min.css.map
│ ├── bootstrap-theme.css
│ ├── bootstrap-theme.css.map
│ ├── bootstrap-theme.min.css
│ └── bootstrap-theme.min.css.map
├── js/
│ ├── bootstrap.js
│ └── bootstrap.min.js
└── fonts/
├── glyphicons-halflings-regular.eot
├── glyphicons-halflings-regular.svg
├── glyphicons-halflings-regular.ttf
├── glyphicons-halflings-regular.woff
└── glyphicons-halflings-regular.woff2
最常用的是css/bootstrap.min.css
迫像、js/bootstrap.min.js
jquery.min.js
可以在JQuery官網(wǎng)下載
最后劈愚,在相應(yīng)文件中引入即可。
優(yōu)點(diǎn):確保網(wǎng)絡(luò)狀況不佳的情況下闻妓,頁(yè)面樣式依然可以正常顯示
缺點(diǎn):需要提前安裝或下載菌羽,引用時(shí)要考慮路徑問(wèn)題。