bootstrap 一個簡單的登陸頁面
阿新 • • 發佈:2018-02-10
window tran 修改 min tle mar text ace rap
效果如圖:用bootstrap 寫的一個簡單的登陸
一、修改樣式
樣式可以自己調整,例如換個背景色之類的,修改 background-color屬性就可以
#from { background-color: #96b97d; }
我自己調的時候只給from加了背景色,當然可以給整個頁面加背景色,設置body背景色就可以
body { background-color: #96b97d; }
當然也可以設置背景圖片之類的
body { background:url(../img/login_bg_0.jpg) #f8f6e9; }
至於效果,可以自己去試驗。
二、廢話少說,上完整代碼
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <meta charset="utf-8" /> <title>用戶登錄</title> <link rel="stylesheet" href="css/style.css" /> <script src="js/bootstrap.min.js"></script> <link href="../css/bootstrap.css" rel="stylesheet" type="text/css" /> <script src="../js/jquery-1.9.1.min.js" type="text/javascript"></script> <style> #from { background-color: #96b97d; } .mycenter { margin-top: 100px; margin-left: auto; margin-right: auto; height: 350px; width: 500px; padding: 5%; padding-left: 5%; padding-right: 5%; } .mycenter mysign { width: 440px; } .mycenter input, checkbox, button { margin-top: 2%; margin-left: 10%; margin-right: 10%; } .mycheckbox { margin-top: 10px; margin-left: 40px; margin-bottom: 10px; height: 10px; } </style> <script type="text/javascript"> $(function () { $(‘#btn‘).click(function (e) { window.location.href = "main.aspx"; }); }); </script> </head> <body> <form id="from"> <div class="mycenter"> <div class="mysign"> <div class="col-lg-11 text-center text-info"> <h2> 請登錄</h2> </div> <div class="col-lg-10"> <input type="text" class="form-control" name="username" placeholder="請輸入賬戶名" required autofocus /> </div> <div class="col-lg-10"> </div> <div class="col-lg-10"> <input type="password" class="form-control" name="password" placeholder="請輸入密碼" required autofocus /> </div> <div class="col-lg-10"> </div> <div class="col-lg-10 mycheckbox checkbox"> <input type="checkbox" class="col-lg-1">記住密碼</input> </div> <div class="col-lg-10"> </div> <div class="col-lg-10"> <button type="button" id="btn" class="btn btn-success col-lg-12"> 登錄</button> </div> </div> </div> </form> </body> </html>
bootstrap 一個簡單的登陸頁面