本篇文章帶大家聊聊Bootstrap中的自適應畫面。有一定的參考價值,有需要的朋友可以參考一下,希望對大家有幫助。
Bootstrap是基於HTML.css.javaScript開發的簡潔,直觀,強悍的前端開發框架,使web開發跟家快捷能製作響應式網頁。 【相關推薦:《bootstrap教學》】
bootstrap自適應:
Bootstrap根據螢幕大小吧裝置分為超小螢幕,小螢幕,中螢幕,大螢幕四種並把螢幕分成12列對應螢幕寬度為:
超小螢幕(手機):0-768px 對應設定class=col-xs-number
小螢幕(平板):768-992px 對應設定class=col-sm-number
# 中等螢幕(電腦):992-1200px 對應設定class=col-md-number
大螢幕(電腦): 1200px-? 對應設定class=col-lg-number
在chrome瀏覽器,elements視窗中會發現當螢幕寬度小於768時,只有com-xs-12生效。
自適應:網頁適應不同裝置,用bootstrap框架
#原則:是媒體(裝置/瀏覽器)查詢@media only screen查詢裝置的寬度
底層是以@media only screen and (min-width:最小值) and (max-width:最大值)呈現:
##例一對背景:
@media only screen and (min-width:0px) and (max-width:480px){ body{ background-color:red; } } @media only screen and (min-width:481px) and (max-width:720px){ body{ background-color:green; } } @media only screen and (min-width:721px){ body{ background-color:blue; } }
例二對區塊級元素p
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> </head> <body> <style type="text/css"> div{ float:left; } /**小屏0px-768px*/ @media only screen and (min-width:0px) and (max-width:768px){ .sm-12{ width:100%; } } /**大屏768*/ @media only screen and (min-width:768px){ .lg-6{ width:50%; } } </style> <!-- 两个样式不会同时生效 在小屏上sm-12生效, width是100%在大屏上lg-6生效,width50% css中标签分块级标记和行级标记,div是块级元素 --> <div class="sm-12 lg-6">div1</div> <div class="sm-12 lg-6">div2</div> </body> </html>
bootstarp對其進行整合自適應 步驟
1.link標籤引入bootstrap.css檔案例如:2.在bootstrap中定義
1)根元素必須是p class值必須等於container
2)根元素必須包含行元素且行元素class值必須等於row
3)行包含列class的值必須為col-*-number
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> <link href="bootstrap.css" rel="stylesheet" type="text/css"> </head> <body> <!-- 根元素必须是div class必须=container --> <div class="container"> <!-- 根元素必须包含行 class=row --> <div class="row"> <!-- 行中包含列 -- class=col-*-number--> <div class="col-xs-12 col-sm-6 col-md-4">div1</div> <div class="col-xs-12 col-sm-6 col-md-4">div2</div> <div class="col-xs-12 col-sm-6 col-md-4">div3</div> </div> <div class="row"></div> </div> </body> </html>
程式設計入門! !
以上是淺談Bootstrap中的自適應螢幕的詳細內容。更多資訊請關注PHP中文網其他相關文章!