【BootStrap】初步教程

[html]  view plain copy
 
  1. <span style="font-family: Arial, Helvetica, sans-serif;">最近剛剛接觸到BootStrap,在這裏總結一下BootStrap的使用方法。</span>  

 

一、BootStrap的下載css

      Bootstrap 中文網 爲 Bootstrap 專門構建了本身的免費 CDN 加速服務。基於國內雲廠商的 CDN 服務,訪問速度更快、加速效果更明顯、沒有速度和帶寬限制、永久免費。便可以在不下載BootStrap的狀況下使用BootStrap。html

  BootStrap中文網網址:http://www.bootcss.com/jquery

 

二、在頁面中引用BootStrapbootstrap

 

[html]  view plain copy
 
  1. <meta charset="utf-8">  
  2. <meta http-equiv="X-UA-Compatible" content="IE=edge">  
  3. <meta name="viewport" content="width=device-width, initial-scale=1">  
  4. <!-- 上述3個meta標籤*必須*放在最前面,任何其餘內容都*必須*跟隨其後! -->  
[html]  view plain copy
 
  1. <link rel="stylesheet" href="http://cdn.bootcss.com/bootstrap/3.3.4/css/bootstrap.min.css">  
[html]  view plain copy
 
  1. <!--<script src="http://cdn.bootcss.com/jquery/1.11.2/jquery.min.js"></script>-->  
  2. <!-- Include all compiled plugins (below), or include individual files as needed -->  
  3. <!--<script src="http://cdn.bootcss.com/bootstrap/3.3.4/js/bootstrap.min.js">-->  

在沒有下載BootStrap的時候,引用BootStrap中文網爲咱們提供的css庫和js庫。當咱們下載BootStrap的時候,則引用本地的庫文件:學習

 

[html]  view plain copy
 
  1. <link rel="stylesheet" href="css/bootstrap.min.css">  

 

 

[html]  view plain copy
 
  1. <script src="js/bootstrap.min.js"></script<!-- 解壓後的本地文件 -->  
  2. <!-- Include all compiled plugins (below), or include individual files as needed -->  
  3. <script src="js/jquery-2.1.4.min.js">  

 

 

三、使用BootStrap爲咱們提供的樣式和效果網站

在頁面中咱們只須要引用BootStrap爲咱們寫好的類選擇器便可得到BootStrap的各類效果。好比:ui

(1)按鈕樣式:spa

 

*按鈕的大小採用.btn-large.btn-small, 或 .btn-mini.net

經過添加.btn-block 建立塊級按鈕, 同時會填充整個父級的寬度code


*按鈕的可用與否採用.disabled

 

 

其餘的就很少說了,以上示例來自BootStrap官網。

 

說明:以上示例來自http://bootstrap.kinghack.com/base-css.html,你們也能夠經過這個網站來學習BootStrap的使用。

相關文章
相關標籤/搜索