【Bootstrap】一個PC、平板、手機同一時候使用並且美觀的登陸頁面
Bootstrap如同前臺框架,它已經布置好不少的CSS。前端開發的使用須要則直接調用就可以。其站點的網址就是http://www.bootcss.com。使用Bootstrap能降低前端開發時候在CSS樣子的布置時間
須要使用Bootstrap先在官網(點擊打開鏈接)下載組件就可以,用於生產環境的Bootstrap版本號(點擊打開鏈接),Bootstrap3對2並不兼容,建議直接依據其開發文檔使用Bootstrap3。
將Bootstrap解壓之後把得到的3個目錄css,fonts,js復制到網站目錄以下。
假設是Eclipse的JSP Web Project的話就把它們放到WebRoot目錄以下。
之後就行在此網站文件夾下的不論什麽頁面調用Bootstrap為前端高速建模。
只是值得註意的是,不同瀏覽器對於Bootstrap解釋是不一樣的,當中IE對某些樣式讀不出來,可是主要的功能不受影響。頁面醜一點而已。
下面是IE與谷歌瀏覽器對同一頁面的對照:
一、基本目標
使用Bootstrap來編寫一個PC、平板、手機同一時候使用並且美觀的登陸頁面。
在PC上假設拉伸的話。各類元素會自己主動適應屏幕。
在手機上打開這類的頁面的話,會直接適應手機屏幕,無需用戶自己主動調節。
二、基本思想
頁面的布局,依據Bootstrap固有的樣式設計例如以下:
三、制作過程
例如以下整個頁面詳細代碼例如以下,以下將一個一個標簽來分析:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>登陸頁面</title> <meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no"> <link href="css/bootstrap.css" rel="stylesheet" media="screen"> </head> <body> <div class="panel panel-info"> <div class="panel-heading"> <table frame="void"> <tr> <td> <img src="images/img0.jpg" width="300px" height="300px" /> </td> <td> 歡迎。請您先登錄。 </td> </tr> </table> </div> <div class="panel-body"> <form class="form-horizontal" role="form" action="1.html" method="post"> <div class="form-group"> <label for="username" class="col-sm-2 control-label"> 用戶名: </label> <div class="col-sm-10"> <input type="text" name="username" class="form-control" placeholder="用戶名" id="username" /> </div> </div> <div class="form-group"> <label for="password" class="col-sm-2 control-label"> 密碼: </label> <div class="col-sm-10"> <input type="password" name="password" class="form-control" placeholder="密碼" id="password" /> </div> </div> <div class="form-group"> <div class="col-sm-offset-2 col-sm-10"> <button type="submit" class="btn btn-info"> 登陸 </button> <small> 沒有賬號?<a href="http://2.com">點擊註冊</a> </small> </div> </div> </form> </div> </div> </body> </html>
1.<head>標簽
先在<head>標簽中。放入例如以下兩行代碼:
<head> <title>登陸頁面</title> <!--要求頁面自己主動適應瀏覽器的屏幕--> <meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no"> <!--聲明我要使用bootstrap--> <link href="css/bootstrap.css" rel="stylesheet" media="screen"> </head>
2.<body>標簽
(1)首先寫入<div class="panel panel-info"></div>。然後在當中放入代碼,其基本說明例如以下圖:
(2)<div class="panel-heading">標簽
<div class="panel-heading"> <!--設置表格對這個CSS圖層進行布局,在img標簽中加入align="left"是不好用的,圖象會向圖層外溢出--> <!--同<table border="0">--> <table frame="void"> <tr> <td> <img src="images/img0.jpg" width="300px" height="300px" /> </td> <td> 歡迎。請您先登錄。 </td> </tr> </table> </div>(3)<div class="panel-body">標簽下。先放入一個表單元素form class="form-horizontal" role="form" action="1.html" method="post">,此表單與HTML的普通表單相比,就是多了class屬性與role屬性,class屬性無需多說。假設值為form的話,表單即使有足夠位置,外標簽與輸入框也不會在同一行,假設值為如今的form-horizontal。那麽則如圖效果所看到的。role屬性看不出有怎樣效果,此處不過依據bootstrap的中文文檔加入的。
接下來,各個form表單下的元素例如以下:
<div class="panel-body"> <form class="form-horizontal" role="form" action="1.html" method="post"> <!--每個屬性的外標簽與輸入框構成一個form-group元組--> <div class="form-group"> <!--例如以下的class屬性是為了其可以依據屏幕的大小自己主動拉伸--> <label for="username" class="col-sm-2 control-label"> 用戶名: </label> <div class="col-sm-10"> <!--此處的placholder意為不輸入不論什麽東西的說明灰字,當然在IE8中無法解釋。id看不出有什麽作用。不過依據Bootstrap中文文檔的要求而加入的--> <input type="text" name="username" class="form-control" placeholder="用戶名" id="username" /> </div> </div> <div class="form-group"> <label for="password" class="col-sm-2 control-label"> 密碼: </label> <div class="col-sm-10"> <input type="password" name="password" class="form-control" placeholder="密碼" id="password" /> </div> </div> <div class="form-group"> <div class="col-sm-offset-2 col-sm-10"> <!--此處的button與HTML的普通submit按鈕是有差別的,但不影響表單的提交--> <button type="submit" class="btn btn-info"> 登陸 </button> <!--<small>標簽保證了這段文字與submit按鈕同一行--> <small> 沒有賬號?<a href="http://2.com">點擊註冊</a> </small> </div> </div> </form> </div>
至此。本頁面的開發完畢。
【Bootstrap】一個PC、平板、手機同一時候使用並且美觀的登陸頁面