asp.net 利用jquery讓登入頁面垂直居中顯示
直接原始碼,有不懂的請留言。
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>許可權登入</title>
<link href="css/master.css" type="text/css" rel="stylesheet" />
<script src="js/jquery-1.8.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
divresize();
});
/**自應高度**/
function divresize() {
resizeU();
$(window).resize(resizeU);
//這個方法是讓無論,瀏覽者電腦螢幕如何。都能讓div居中,垂直居中,div的id是AT
function resizeU() {
//css("width")這樣獲取的是 數字加px,
var logindiv_width = $("#AT").css("width").replace("px", "");
//css("height")這樣獲取的是 數字加px
var logindiv_height = $("#AT").css("height").replace("px", "");
$("#AT").css({
"margin-left": ($(document).width() - logindiv_width) / 2,
"margin-top": ($(document).height() - logindiv_height) / 2,
});
}
}
</script>
</head>
<body class="move">
<div id="AT">
<div class="header">
<div class="headerLogo"><img src="images/headerLogo.gif" /></div>
</div>
<div class="main">
<div class="login">
<div class="loginTitle">
使用者許可權管理系統
</div>
<div class="loginForm">
<form>
<div class="prompt">請輸入正確的使用者名稱或密碼!</div>
<input type="text" value="請輸入使用者名稱" class="loginUser" />
<input type="text" value="請輸入密碼" class="loginPassword"/>
<div class="rememberPs">
<input type="checkbox" class="mr10" />記住密碼
</div>
<input type="button" class="loginBtn">
</form>
</div>
</div>
</div>
<div class="footer">技術支援:安徽省XXX有限公司</div>
</div>
</body>
</html>
如下圖所示:相關文章
- Vue專案中使用Html+Css使div在頁面中居中顯示(水平+垂直)VueHTMLCSS
- Flex佈局-垂直居中並換行顯示內容Flex
- IE8中jQuery.load()載入頁面不顯示的原因jQuery
- 淺談居中問題(水平居中、垂直居中、水平垂直居中)
- Qt 讓彈出的視窗居中顯示QT
- 登入頁面
- 垂直居中
- div垂直居中-CSS元素垂直居中方法CSS
- 水平居中和垂直居中
- 如何讓Spring MVC顯示自定義的404 Not Found頁面SpringMVC
- 底部導航在一級頁面顯示,二級頁面不顯示
- 水平居中、垂直居中、水平垂直居中、浮動居中、絕對定位居中…….幫你搞定
- CSS 垂直居中CSS
- CSS垂直居中和水平居中CSS
- CSS水平居中和垂直居中CSS
- vue 3 頁面全屏顯示Vue
- jQuery 顯示 input 輸入的密碼!jQuery密碼
- 元素水平居中,垂直居中方法
- QT居中螢幕顯示QT
- win10 工作列居中顯示如何設定_win10怎麼讓工作列圖示居中Win10
- 登入介面居中效果
- 面試題:水平垂直居中的17種方法面試題
- css水平垂直居中CSS
- 小程式垂直居中
- 元素垂直水平居中
- div 水平垂直 居中
- 簡單的網頁登入頁面網頁
- javaWeb登入註冊頁面JavaWeb
- CSS水平居中和垂直居中的方法CSS
- 網頁設計如何優雅的實現垂直居中網頁
- QT tableWidget 內容居中顯示QT
- word首頁不顯示頁碼怎麼設定 如何讓頁碼從第二頁開始顯示
- JQuery iframe頁面jQuery
- CSS垂直居中方法CSS
- CSS未知高度垂直居中CSS
- PbootCMS後臺頁面顯示亂碼boot
- 重定向到登入頁面後跳轉原頁面
- 自定義登入和登出頁面
- 16種方法實現水平居中垂直居中