JS當(dāng)前頁面登錄注冊框,固定DIV,底層陰影的實例代碼
更新時間:2016年09月29日 09:40:55 投稿:jingxian
下面小編就為大家?guī)硪黄狫S當(dāng)前頁面登錄注冊框,固定DIV,底層陰影的實例代碼。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
這是一個實例,保存代碼為html文件運行試試吧。兼容火狐、ie6、ie7、ie8、Chrome等。
<!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=gb2312" />
<title>JS當(dāng)前頁面登錄注冊框,固定DIV,底層陰影——腳本之家</title>
<!--
一個按鈕
點擊之后 顯示一個div
div要水平 垂直居中
當(dāng)我瀏覽器高度 寬度變化的時候
div依然水平 垂直居中
點擊遮罩層,浮動層隱藏
知識點:
1.如何用css控制div水平垂直居中
2.如何用js取得瀏覽器高度寬度
3.如何控制resize事件-->
<style type="text/css">
.hidden{ display:none}
/*評論浮動層*/
#smallLay{width:498px; height:100px;padding:4px 10px 10px;background-color:#FFFFFF;border:1px solid #05549d;color:#333333;line-height:24px;text-align:left;-webkit-box-shadow:5px 2px 6px #000;-moz-box-shadow:3px 3px 6px #555;}
</style>
</head>
<script type="text/javascript">
//判斷瀏覽器ie6創(chuàng)建的div的樣式和非ie6創(chuàng)建的div的樣式
//創(chuàng)建div
function showid(idname) {
var isIE = (document.all) ? true : false;
var isIE6 = isIE && ([/MSIE (\d)\.0/i.exec(navigator.userAgent)][0][1] == 6);
var newbox = document.getElementById(idname);
newbox.style.zIndex = "9999";
newbox.style.display = "block"
newbox.style.position = !isIE6 ? "fixed" : "absolute";
newbox.style.top = newbox.style.left = "50%";
newbox.style.marginTop = -newbox.offsetHeight / 2 + "px";
newbox.style.marginLeft = -newbox.offsetWidth / 2 + "px";
var jihualayer = document.createElement("div");
jihualayer.id = "jihualayer";
jihualayer.style.width = jihualayer.style.height = "100%";
jihualayer.style.position = !isIE6 ? "fixed" : "absolute";
jihualayer.style.top = jihualayer.style.left = 0;
jihualayer.style.backgroundColor = "#000";
jihualayer.style.zIndex = "9998";
jihualayer.style.opacity = "0.6";
document.body.appendChild(jihualayer);
var sel = document.getElementsByTagName("select");
for (var i = 0; i < sel.length; i++) {
sel[i].style.visibility = "hidden";
}
function jihualayer_iestyle() {
jihualayer.style.width = Math.max(document.documentElement.scrollWidth, document.documentElement.clientWidth)
+ "px";
jihualayer.style.height = Math.max(document.documentElement.scrollHeight, document.documentElement.clientHeight) +
"px";
}
function newbox_iestyle() {
newbox.style.marginTop = document.documentElement.scrollTop - newbox.offsetHeight / 2 + "px";
newbox.style.marginLeft = document.documentElement.scrollLeft - newbox.offsetWidth / 2 + "px";
}
if (isIE) { jihualayer.style.filter = "alpha(opacity=60)"; }
if (isIE6) {
jihualayer_iestyle()
newbox_iestyle();
window.attachEvent("onscroll", function () {
newbox_iestyle();
})
window.attachEvent("onresize", jihualayer_iestyle)
}
jihualayer.onclick = function () {
newbox.style.display = "none"; jihualayer.style.display = "none"; for (var i = 0; i < sel.length; i++) {
sel[i].style.visibility = "visible";
}
}
}
</script>
<body>
<div style="width:200px; height:100px;"></div>
<input name="" type="button" id="showbtn" value="點擊顯示" onclick="showid('smallLay')" />
<!--收藏浮層開始-->
<div id="smallLay" style="display:none" >
這<a style="text-decoration:none; color:Gray;">是</a>懸浮層
</div>
<!--收藏浮層結(jié)束-->
<div id="a" style="height:1000px;">這<a style="text-decoration:none; color:Black;">是</a>普通層</div>
</body>
</html>
以上就是小編為大家?guī)淼腏S當(dāng)前頁面登錄注冊框,固定DIV,底層陰影的實例代碼的全部內(nèi)容了,希望對大家有所幫助,多多支持腳本之家~
您可能感興趣的文章:
- 用javascript制作qq注冊動態(tài)頁面
- jsp+dao+bean+servlet(MVC模式)實現(xiàn)簡單用戶登錄和注冊頁面
- 使用JSP實現(xiàn)簡單的用戶登錄注冊頁面示例代碼解析
- JS實現(xiàn)驗證碼倒計時的注冊頁面
- JS一個簡單的注冊頁面實例
- JavaScript 完成注冊頁面表單校驗的實例
- node.js實現(xiàn)登錄注冊頁面
- 原生js驗證簡潔注冊登錄頁面
- js正則表達式注冊頁面表單驗證
- js當(dāng)前頁面登錄注冊框,固定div,底層陰影的實例代碼
- javascript實現(xiàn)信息的顯示和隱藏如注冊頁面
- php用戶注冊頁面利用js進行表單驗證具體實例
- JS、CSS和HTML實現(xiàn)注冊頁面
相關(guān)文章
ES6 系列之 Generator 的自動執(zhí)行的方法示例
這篇文章主要介紹了ES6 系列之 Generator 的自動執(zhí)行的方法示例,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2018-10-10
js中confirm實現(xiàn)執(zhí)行操作前彈出確認框的方法
這篇文章主要介紹了js中confirm實現(xiàn)執(zhí)行操作前彈出確認框的方法,是執(zhí)行刪除等操作時常用的功能,非常具有實用價值,需要的朋友可以參考下2014-11-11
學(xué)習(xí)掌握JavaScript中this的使用技巧
這篇文章主要幫助大家學(xué)習(xí)并熟練掌握JavaScript中this的使用技巧,感興趣的小伙伴們可以參考一下2016-08-08

