這篇文章帶給大家的內容是關於bootstrap做一個登錄註冊頁面的詳解,有一定的參考價值,有需要的朋友可以參考一下,希望對你有所幫助。
本章內容是用bootstrap做的登錄註冊頁面,並使用jquery-validate進行表單驗證。
技術:bootstrap,font-awesome,jquery-validate;
特點:響應式佈局,表單驗證,背景圖片自適應螢幕大小;
宗旨:從實戰中學知識。
效果圖:
html程式碼:
第三方資源的導入是用cdn引入;當然也可以自己去下載在本地導入。
nbsp;html> <meta> <title>bootstrap案例</title> <!--用百度的静态资源库的cdn安装bootstrap环境--> <!-- Bootstrap 核心 CSS 文件 --> <link> <!--font-awesome 核心我CSS 文件--> <link> <!-- 在bootstrap.min.js 之前引入 --> <script></script> <!-- Bootstrap 核心 JavaScript 文件 --> <script></script> <!--jquery.validate--> <script></script> <script></script> <style> body{background: url(img/4.jpg) no-repeat;background-size:cover;font-size: 16px;} .form{background: rgba(255,255,255,0.2);width:400px;margin:100px auto;} #login_form{display: block;} #register_form{display: none;} .fa{display: inline-block;top: 27px;left: 6px;position: relative;color: #ccc;} input[type="text"],input[type="password"]{padding-left:26px;} .checkbox{padding-left:21px;} </style> <!-- 基础知识: 网格系统:通过行和列布局 行必须放在container内 手机用col-xs-* 平板用col-sm-* 笔记本或普通台式电脑用col-md-* 大型设备台式电脑用col-lg-* 为了兼容多个设备,可以用多个col-*-*来控制; --> <div> <div> <form> <h3>Login to your account</h3> <div> <div> <i></i> <input> </div> <div> <i></i> <input> </div> <div> <label> <input> Remember me </label> <hr> <a>Create an account</a> </div> <div> <input> </div> </div> </form> </div> <div> <form> <h3>Login to your account</h3> <div> <div> <i></i> <input> </div> <div> <i></i> <input> </div> <div> <i></i> <input> </div> <div> <i></i> <input> </div> <div> <input> <input> </div> </div> </form> </div> </div> <script></script>
js程式碼:
$().ready(function() { $("#login_form").validate({ rules: { username: "required", password: { required: true, minlength: 5 }, }, messages: { username: "请输入姓名", password: { required: "请输入密码", minlength: jQuery.format("密码不能小于{0}个字 符") }, } }); $("#register_form").validate({ rules: { username: "required", password: { required: true, minlength: 5 }, rpassword: { equalTo: "#register_password" }, email: { required: true, email: true } }, messages: { username: "请输入姓名", password: { required: "请输入密码", minlength: jQuery.format("密码不能小于{0}个字 符") }, rpassword: { equalTo: "两次密码不一样" }, email: { required: "请输入邮箱", email: "请输入有效邮箱" } } }); }); $(function() { $("#register_btn").click(function() { $("#register_form").css("display", "block"); $("#login_form").css("display", "none"); }); $("#back_btn").click(function() { $("#register_form").css("display", "none"); $("#login_form").css("display", "block"); }); });
現在我們開始談談所用到的知識點:
①bootstrap的佈局:
bootstrap用的是網格佈局,使用col-x-x
使用條件:要在.container和.row下才能使用,結構如下:
<div> <div> <div></div> <div></div> </div> <div>...</div> </div>
參考值:
col-xs-*:小於768px,手機
col-sm- *:大於768px,平板
col-md-*:大於998px,普通電腦,筆記本之類
col-lg-*:大於1200px,一般為大型桌上型電腦
可以同時使用,達到跨多個裝置效果
偏移:col--offset-
②表單:
這裡的表單和普通表單沒什麼太多差別,我就不多說了。
③font-awesome的使用:
使用的是4.3.0版本,使用方法
<i></i>
fa-lg表示大圖
更多icon參考:http:// fontawesome.dashgame.com/
④jquery-validate表單驗證:
這是我要講的重點,
第一步:首先到導入jquery-validate第三方資源,
第二步:建立好form表單,初始化validate
$("#login_form").validate({ rules: { username: "required", password: { required: true, minlength: 5 }, }, messages: { username: "请输入姓名", password: { required: "请输入密码", minlength: jQuery.format("密码不能小于{0}个字 符") }, } });
注意這裡的login_form必須是form表單上的選擇器,筆者因為將其設定在p上,控制台顯示settings沒有被定義的錯誤。這裡的username和password都是form表單中的name值;rules是規則,message是提示的資訊
required:true表示該欄位為必填,
minlength:表示長度至少為5,maxlength是html5支援的,所以不用在這裡面設定
equalTo:表示與某某相同,後面接的是第一個值,"#id"或".class"
message:中對應的內容後面就是提示的文字訊息。
⑤背景自適應畫面大小:
不知道前到處找文檔,知道後才發現好簡單,那就是background-size:cover;這樣可以做到背景圖片和瀏覽器大小一樣了。很簡單吧!
以上就是本篇文章的全部內容了,bootstrap更多相關免費影片教學可以關注php中文網bootstrap教學欄位! ! !
以上是bootstrap做一個登入註冊頁面的詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!