国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > JavaScript > 正文

原生js的彈出層且其內的窗口居中

2024-05-06 16:05:56
字體:
來源:轉載
供稿:網友
彈出層內含窗口且居中,在本例使用原生js來實現,與網上的有所不一樣,大家不妨參考下

復制代碼 代碼如下:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<META CONTENT="">
<META CONTENT="">
<META CONTENT="">
<style type="text/css">
*
{
padding:0px;
margin:0px;
}
#Idiv
{
width:900px;
height:auto;
position:absolute;
z-index:1000;
border:2px solid #ffffff;
background:#ffffff;
}
</style>

</HEAD>
<body>

<div>
<a href="javascript:void(0)">點擊關閉層</a>
<br/>document.documentElement 的區別<br/>document.documentElement 的區別
</div>
<div><a href="javascript:void(0)">點擊打開彈出層!</div>
</body>
<script langue="javascript">

function show()
{
var Idiv=document.getElementById("Idiv");
Idiv.style.display="block";
//以下部分要將彈出層居中顯示
Idiv.style.left=(document.documentElement.clientWidth-Idiv.clientWidth)/2+document.documentElement.scrollLeft+"px";
//alert(document.body.scrollTop)
var aa_scrollTop = document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop;
Idiv.style.top=(document.documentElement.clientHeight-Idiv.clientHeight)/2+aa_scrollTop+"px";
//此處出現問題,彈出層左右居中,但是高度卻不居中,顯示在上部分,導致一 //部分不可見,于是暫時在下面添加margin-top


//以下部分使整個頁面至灰不可點擊
var procbg = document.createElement("div"); //首先創建一個div
procbg.setAttribute("id","mybg"); //定義該div的id
procbg.style.background ="#000000";
procbg.style.width ="100%";
procbg.style.height ="100%";
procbg.style.position ="fixed";
procbg.style.top ="0";
procbg.style.left ="0";
procbg.style.zIndex ="500";
procbg.style.opacity ="0.6";
procbg.style.filter ="Alpha(opacity=70)";
//取消滾動條
document.body.appendChild(procbg);
document.body.style.overflow ="auto";

//以下部分實現彈出層的拖拽效果(如果想要彈出層內的div移動,把以下注銷去掉即可)
/*
var posX;
var posY;
Idiv.onmousedown=function(e)
{
if(!e) e = window.event; //IE
posX = e.clientX - parseInt(Idiv.style.left);
posY = e.clientY - parseInt(Idiv.style.top);
document.onmousemove = mousemove;
}
document.onmouseup =function()
{
document.onmousemove =null;
}
function mousemove(ev)
{
if(ev==null) ev = window.event;//IE
Idiv.style.left = (ev.clientX - posX) +"px";
Idiv.style.top = (ev.clientY - posY) +"px";
}*/

}
function closeDiv() //關閉彈出層
{

var Idiv=document.getElementById("Idiv");
var mybg = document.getElementById("mybg");
document.body.removeChild(mybg);
Idiv.style.display="none";
document.body.style.overflow ="auto";//恢復頁面滾動條
//document.getElementById("mybg").style.display="none";
}
</script>
</HTML>
//改變上面的彈出層,做自己的一個loading加載的功能。判斷頁面是否加載完畢,完畢后隱藏loading.gif

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>New Document </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>


</body>
<script type="text/ecmascript">
function show(addressImg, img_w, img_h) {
//得到頁面高度
var h = (document.documentElement.scrollHeight > document.documentElement.clientHeight) ? document.documentElement.scrollHeight : document.documentElement.clientHeight;
//得到頁面寬度
var w = (document.documentElement.scrollWidth > document.documentElement.clientWidth) ? document.documentElement.scrollWidth : document.documentElement.scrollWidth;
var procbg = document.createElement("div"); //首先創建一個div
procbg.setAttribute("id", "mybg"); //定義該div的id
procbg.style.background = "#555";
procbg.style.width = "100%";
procbg.style.height = "100%";
procbg.style.position = "fixed";
procbg.style.top = "0";
procbg.style.left = "0";
procbg.style.zIndex = "500";
procbg.style.opacity = "0.6";
procbg.style.filter = "Alpha(opacity=70)";
//取消滾動條
document.body.appendChild(procbg);
document.body.style.overflow = "auto";


var pimg = document.createElement("img"); //創建一個img
pimg.setAttribute("id", "bg_img"); //定義該div的id
pimg.setAttribute("src", addressImg); //定義該div的id
var img_w = (w - img_w) / 2;
var img_h = (h - img_h) / 2;
pimg.style.top = img_h + "px";
pimg.style.left = img_w + "px";
pimg.style.position = "fixed";
pimg.style.opacity = "0.9";
document.getElementById("mybg").appendChild(pimg);
}
function closeDiv() //關閉彈出層
{
var mybg = document.getElementById("mybg");
document.body.removeChild(mybg);
document.body.style.overflow = "auto";//恢復頁面滾動條
//document.getElementById("mybg").style.display="none";
}
show('loading/loading3.gif', '100', '100');
document.onreadystatechange = subSomething;//當頁面加載狀態改變的時候執行這個方法.
function subSomething() {
if (document.readyState == "complete") { //當頁面加載狀態為完全結束時進入
closeDiv();
}
}
</script>
</html>

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 温州市| 舞钢市| 隆昌县| 台东县| 堆龙德庆县| 江油市| 郎溪县| 江华| 邵东县| 通江县| 德江县| 手机| 胶南市| 宜川县| 江口县| 长汀县| 鄂伦春自治旗| 玉屏| 巴中市| 囊谦县| 韶关市| 塔城市| 福鼎市| 清镇市| 彭山县| 宁晋县| 台北县| 通河县| 玉树县| 科技| 昌平区| 三亚市| 平乐县| 宁明县| 五莲县| 永年县| 宝兴县| 桓仁| 甘洛县| 安宁市| 秀山|