Bootstrap 讓咱們的 Web 開發更簡單,更快捷;javascript
是 Twitter 公司的兩名前端工程師 Mark Otto 和 Jacob Thornton 在 2011 - 年發起的,並利用業餘時間完成第一個版本的開發;css
使用 Bootstrap 並不表明不用寫 CSS 樣式,而是不用寫絕大多數你們都會用到的樣式html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>頁面標題</title> <!-- 引入Bootstrap核心樣式文件(必須) --> <link rel="stylesheet" href="css/bootstrap.min.css"> <!-- 引入Bootstrap默認主題樣式(可選) --> <link rel="stylesheet" href="css/bootstrap.theme.min.css"> <!-- 你本身的樣式或其餘文件 --> <link rel="stylesheet" href="example.css"> </head> <body> <!-- 你的HTML結構...... --> <!-- 如下代碼,若是不使用JS插件則不須要 --> <!-- 因爲Bootstrap的JS插件依賴jQuery,so 引入jQuery --> <script src="js/jquery.min.js"></script> <!-- 引入全部的Bootstrap的JS插件 --> <script src="bootstrap.min.js"></script> <!-- 你本身的腳本文件 --> <script src="example.js"></script> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <title>Bootstrap 101 Template</title> <!-- Bootstrap --> <link href="css/bootstrap.min.css" rel="stylesheet"> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <h1>Hello, world!</h1> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="js/bootstrap.min.js"></script> </body> </html>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
jQuery前端
Bootstrap框架中的全部JS組件都依賴於jQuery實現html5
html5shivjava
讓低版本瀏覽器能夠識別HTML5的新標籤,如header、footer、section等jquery
respondgit
讓低版本瀏覽器能夠支持CSS媒體查詢功能github
@media (判斷條件(針對於當前窗口的判斷)){ /*這裏的代碼只有當判斷條件知足時纔會執行*/ } @media (min-width: 768px) and (max-width: 992px) { /*這裏的代碼只有當(min-width: 1280px)知足時纔會執行*/ .container { width: 750px; } }