Js制作簡單彈出層DIV在頁面居中 中間顯示遮罩的具體方法
更新時(shí)間:2013年08月08日 11:16:32 作者:
這篇文章介紹了Js制作簡單彈出層DIV在頁面居中 中間顯示遮罩的具體方法,有需要的朋友可以參考一下
這兩天要用到正好練練手,比想象中碰到的問題要多,比如:
ie6背景透明 ie6居中顯示 還有對js對象的理解
openID=顯示按鈕,conID=需要顯示的div,closeID=關(guān)閉按鈕
解決了:
1.可以遮擋ie6下的select元素 但是在ie6下div沒有透明度
2.彈出的div可以一直在瀏覽器屏幕中間顯示
問題:
1.目前不支持.class 只支持#id
2.需要顯示的div需要自己設(shè)置css
3.在ie6下需要設(shè)置css
例如div {_position: absolute;_top: expression(documentElement.scrollTop + 340 + "px"); }
4.ie6下背景div沒有透明度 這里我上網(wǎng)搜到的結(jié)果都不能解決 如果您有方法請給我留言
<!DOCTYPE HTML>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Js制作簡單彈出層DIV在頁面居中 中間顯示 遮罩 方法</title>
<style type="text/css">
*{margin:0;padding:0;}
#bt{border: 2px solid #000;background-color: #ccc;cursor: pointer;padding: 2px 5px;}
/****訂單彈出框*****/
.orderMsg{ position:fixed;_position: absolute;_top: expression(documentElement.scrollTop + 340 + "px"); background:#fff; border:1px solid #939395; width:500px; height:340px;top: 50%;left: 50%;margin: -200px 0 0 -250px; overflow:hidden; z-index:99999; font-size:14px; color:#000; display:none;}
.orderMsg dl{ overflow:hidden; padding:20px; margin:0;}
.orderMsg dl dt{ line-height:30px;}
.orderMsg dl dd{ line-height:25px; height:25px; padding-left:10px; margin:0;}
.orderMsg dl dd label{ padding-left:5px;}
.orderMsg dl dd.cBtn{ width:102px; height:28px; background:url(../images/member/chooseBtn.gif) no-repeat; margin-top:10px; padding:0;}
.orderMsg dl dd.cBtn a{ display:block; text-align:center;}
.orderMsg dl dd.cBtn a:link,.orderMsg dl dd.cBtn a:visited{ color:#000;}
.orderMsg dl dd.lBtn{ float:left; display:inline; margin-left:100px;}
.orderMsg dl dd.rBtn{ float:left; display:inline; margin-left:10px;}
</style>
</head>
<body>
<a id="bt">點(diǎn)擊彈出div</a>
<div style="height:1000px;">
sdfdsf
<select>
<option>Volvo</option>
<option selected="selected">Saab</option>
<option>Mercedes</option>
<option>Audi</option>
</select>
</div>
<a id="bt">點(diǎn)擊彈出div</a>
<div style="height:1000px;">
sdfdsf
<select>
<option>Volvo</option>
<option selected="selected">Saab</option>
<option>Mercedes</option>
<option>Audi</option>
</select>
</div>
<div id="orderMsg" class="orderMsg" style="display: none;">
<dl>
<dt>請您告知我們?nèi)∠唵蔚脑?,以便我們改進(jìn)。非常感謝!</dt>
<dd><input type="radio" name="reason" id="reason1"><label for="reason1">改變主意,現(xiàn)在不想買了</label></dd>
<dd><input type="radio" name="reason" id="reason2"><label for="reason2">剛才信息填錯(cuò)了,要重新下單</label></dd>
<dd><input type="radio" name="reason" id="reason3"><label for="reason3">先取消,再更換或添加新商品</label></dd>
<dd><input type="radio" name="reason" id="reason4"><label for="reason4">網(wǎng)銀,信用卡等支付有問題</label></dd>
<dd><input type="radio" name="reason" id="reason5"><label for="reason5">等待時(shí)間過長,不耐煩了</label></dd>
<dd><input type="radio" name="reason" id="reason6"><label for="reason6">商品價(jià)格較貴</label></dd>
<dd><input type="radio" name="reason" id="reason7"><label for="reason7">出現(xiàn)商品缺貨情況</label></dd>
<dd><input type="radio" name="reason" id="reason8"><label for="reason8">其它的原因</label></dd>
<dd><input type="radio" disabled="disabled"><label>72小時(shí)到期自動取消(不可選)</label></dd>
<dd class="cBtn lBtn"><a href="#">選好了</a></dd><dd class="cBtn rBtn"><a href="#" onclick="" id="close">點(diǎn)擊取消</a></dd>
</dl>
</div>
<script type="text/javascript">
/*
openID=顯示按鈕,conID=需要顯示的div,closeID=關(guān)閉按鈕
解決了:
1.可以遮擋ie6下的select元素 但是在ie6下div沒有透明度
2.彈出的div可以一直在瀏覽器屏幕中間顯示
問題:
1.目前不支持.class 只支持#id
2.需要顯示的div需要自己設(shè)置css
3.在ie6下需要設(shè)置css
例如div {_position: absolute;_top: expression(documentElement.scrollTop + 340 + "px"); }
4.ie6下背景div沒有透明度 這里我上網(wǎng)搜到的結(jié)果都不能解決 如果您有方法請給我留言
*/
var _CalF = { //便捷方法
$ : function(id){return document.getElementById(id)},
create : function(id){return document.createElement(id)},
append : function(id){return document.body.appendChild(id)},
remove : function(id){return document.body.removeChild(id)}
}
function popup(openID,conID,closeID){
this.onclick(openID,conID,closeID);
}
popup.prototype = {
cssStyle : "width:100%;position:absolute;left:0;top:0;filter:alpha(opacity = 50);opacity:0.5;border:0;overflow:auto;",
createShadowDiv : function(){ //背景遮罩
var shadowDiv = _CalF.create("div");
shadowDiv.id = "shadowDiv";
shadowDiv.style.cssText = this.cssStyle;
shadowDiv.style.height = document.body.scrollHeight + "px";
shadowDiv.style.backgroundColor = "#000"
shadowDiv.style.zindex = 100;
_CalF.append(shadowDiv);
},
createIframe : function(){ //iframe
var iframe = _CalF.create("iframe");
iframe.id = "shadowIframe";
iframe.style.cssText = this.cssStyle;
iframe.style.height = document.body.scrollHeight + "px";
iframe.style.zindex = 99;
_CalF.append(iframe);
},
removeDiv : function(){
_CalF.remove(_CalF.$("shadowDiv"));
_CalF.remove(_CalF.$("shadowIframe"));
},
onclick : function(openID,conID,closeID){
var that = this;
_CalF.$(openID).onclick = function(){
if(window.ActiveXObject){ //ie6
if(!window.XMLHttpRequest){
document.body.style.cssText = "_background-image: url(about:blank);_background-attachment: fixed;";
}
}
that.createIframe();
that.createShadowDiv();
_CalF.$(conID).style.display = "block";
}
document.getElementById(closeID).onclick = function(){
_CalF.$(conID).style.display = "none";
that.removeDiv();
}
}
}
var bt = new popup("bt","orderMsg","close");
</script>
</body>
</html>
ie6背景透明 ie6居中顯示 還有對js對象的理解
openID=顯示按鈕,conID=需要顯示的div,closeID=關(guān)閉按鈕
解決了:
1.可以遮擋ie6下的select元素 但是在ie6下div沒有透明度
2.彈出的div可以一直在瀏覽器屏幕中間顯示
問題:
1.目前不支持.class 只支持#id
2.需要顯示的div需要自己設(shè)置css
3.在ie6下需要設(shè)置css
例如div {_position: absolute;_top: expression(documentElement.scrollTop + 340 + "px"); }
4.ie6下背景div沒有透明度 這里我上網(wǎng)搜到的結(jié)果都不能解決 如果您有方法請給我留言
復(fù)制代碼 代碼如下:
<!DOCTYPE HTML>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Js制作簡單彈出層DIV在頁面居中 中間顯示 遮罩 方法</title>
<style type="text/css">
*{margin:0;padding:0;}
#bt{border: 2px solid #000;background-color: #ccc;cursor: pointer;padding: 2px 5px;}
/****訂單彈出框*****/
.orderMsg{ position:fixed;_position: absolute;_top: expression(documentElement.scrollTop + 340 + "px"); background:#fff; border:1px solid #939395; width:500px; height:340px;top: 50%;left: 50%;margin: -200px 0 0 -250px; overflow:hidden; z-index:99999; font-size:14px; color:#000; display:none;}
.orderMsg dl{ overflow:hidden; padding:20px; margin:0;}
.orderMsg dl dt{ line-height:30px;}
.orderMsg dl dd{ line-height:25px; height:25px; padding-left:10px; margin:0;}
.orderMsg dl dd label{ padding-left:5px;}
.orderMsg dl dd.cBtn{ width:102px; height:28px; background:url(../images/member/chooseBtn.gif) no-repeat; margin-top:10px; padding:0;}
.orderMsg dl dd.cBtn a{ display:block; text-align:center;}
.orderMsg dl dd.cBtn a:link,.orderMsg dl dd.cBtn a:visited{ color:#000;}
.orderMsg dl dd.lBtn{ float:left; display:inline; margin-left:100px;}
.orderMsg dl dd.rBtn{ float:left; display:inline; margin-left:10px;}
</style>
</head>
<body>
<a id="bt">點(diǎn)擊彈出div</a>
<div style="height:1000px;">
sdfdsf
<select>
<option>Volvo</option>
<option selected="selected">Saab</option>
<option>Mercedes</option>
<option>Audi</option>
</select>
</div>
<a id="bt">點(diǎn)擊彈出div</a>
<div style="height:1000px;">
sdfdsf
<select>
<option>Volvo</option>
<option selected="selected">Saab</option>
<option>Mercedes</option>
<option>Audi</option>
</select>
</div>
<div id="orderMsg" class="orderMsg" style="display: none;">
<dl>
<dt>請您告知我們?nèi)∠唵蔚脑?,以便我們改進(jìn)。非常感謝!</dt>
<dd><input type="radio" name="reason" id="reason1"><label for="reason1">改變主意,現(xiàn)在不想買了</label></dd>
<dd><input type="radio" name="reason" id="reason2"><label for="reason2">剛才信息填錯(cuò)了,要重新下單</label></dd>
<dd><input type="radio" name="reason" id="reason3"><label for="reason3">先取消,再更換或添加新商品</label></dd>
<dd><input type="radio" name="reason" id="reason4"><label for="reason4">網(wǎng)銀,信用卡等支付有問題</label></dd>
<dd><input type="radio" name="reason" id="reason5"><label for="reason5">等待時(shí)間過長,不耐煩了</label></dd>
<dd><input type="radio" name="reason" id="reason6"><label for="reason6">商品價(jià)格較貴</label></dd>
<dd><input type="radio" name="reason" id="reason7"><label for="reason7">出現(xiàn)商品缺貨情況</label></dd>
<dd><input type="radio" name="reason" id="reason8"><label for="reason8">其它的原因</label></dd>
<dd><input type="radio" disabled="disabled"><label>72小時(shí)到期自動取消(不可選)</label></dd>
<dd class="cBtn lBtn"><a href="#">選好了</a></dd><dd class="cBtn rBtn"><a href="#" onclick="" id="close">點(diǎn)擊取消</a></dd>
</dl>
</div>
<script type="text/javascript">
/*
openID=顯示按鈕,conID=需要顯示的div,closeID=關(guān)閉按鈕
解決了:
1.可以遮擋ie6下的select元素 但是在ie6下div沒有透明度
2.彈出的div可以一直在瀏覽器屏幕中間顯示
問題:
1.目前不支持.class 只支持#id
2.需要顯示的div需要自己設(shè)置css
3.在ie6下需要設(shè)置css
例如div {_position: absolute;_top: expression(documentElement.scrollTop + 340 + "px"); }
4.ie6下背景div沒有透明度 這里我上網(wǎng)搜到的結(jié)果都不能解決 如果您有方法請給我留言
*/
var _CalF = { //便捷方法
$ : function(id){return document.getElementById(id)},
create : function(id){return document.createElement(id)},
append : function(id){return document.body.appendChild(id)},
remove : function(id){return document.body.removeChild(id)}
}
function popup(openID,conID,closeID){
this.onclick(openID,conID,closeID);
}
popup.prototype = {
cssStyle : "width:100%;position:absolute;left:0;top:0;filter:alpha(opacity = 50);opacity:0.5;border:0;overflow:auto;",
createShadowDiv : function(){ //背景遮罩
var shadowDiv = _CalF.create("div");
shadowDiv.id = "shadowDiv";
shadowDiv.style.cssText = this.cssStyle;
shadowDiv.style.height = document.body.scrollHeight + "px";
shadowDiv.style.backgroundColor = "#000"
shadowDiv.style.zindex = 100;
_CalF.append(shadowDiv);
},
createIframe : function(){ //iframe
var iframe = _CalF.create("iframe");
iframe.id = "shadowIframe";
iframe.style.cssText = this.cssStyle;
iframe.style.height = document.body.scrollHeight + "px";
iframe.style.zindex = 99;
_CalF.append(iframe);
},
removeDiv : function(){
_CalF.remove(_CalF.$("shadowDiv"));
_CalF.remove(_CalF.$("shadowIframe"));
},
onclick : function(openID,conID,closeID){
var that = this;
_CalF.$(openID).onclick = function(){
if(window.ActiveXObject){ //ie6
if(!window.XMLHttpRequest){
document.body.style.cssText = "_background-image: url(about:blank);_background-attachment: fixed;";
}
}
that.createIframe();
that.createShadowDiv();
_CalF.$(conID).style.display = "block";
}
document.getElementById(closeID).onclick = function(){
_CalF.$(conID).style.display = "none";
that.removeDiv();
}
}
}
var bt = new popup("bt","orderMsg","close");
</script>
</body>
</html>
您可能感興趣的文章:
- js實(shí)現(xiàn)div彈出層的方法
- 使用js實(shí)現(xiàn)關(guān)閉js彈出層的窗口
- js與css實(shí)現(xiàn)彈出層覆蓋整個(gè)頁面的方法
- js 點(diǎn)擊頁面其他地方關(guān)閉彈出層(示例代碼)
- js寫一個(gè)彈出層并鎖屏效果實(shí)現(xiàn)代碼
- js+css 實(shí)現(xiàn)遮罩居中彈出層(隨瀏覽器窗口滾動條滾動)
- js彈出層之1:JQuery.Boxy (二)
- Js Jquery創(chuàng)建一個(gè)彈出層可加載一個(gè)頁面
- jquery.artwl.thickbox.js 一個(gè)非常簡單好用的jQuery彈出層插件
- javascript實(shí)現(xiàn)彈出層效果
相關(guān)文章
JavaScript實(shí)現(xiàn)拖拽排序的方法詳解
可拖拽排序的菜單效果大家想必都很熟悉,本次我們通過一個(gè)可拖拽排序的九宮格案例來演示其實(shí)現(xiàn)原理,感興趣的小伙伴可以跟隨小編一起學(xué)習(xí)一下2022-05-05bootstrap的3級菜單樣式,支持母版頁保留打開狀態(tài)實(shí)現(xiàn)方法
下面小編就為大家?guī)硪黄猙ootstrap的3級菜單樣式,支持母版頁保留打開狀態(tài)實(shí)現(xiàn)方法。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2016-11-11微信小程序?qū)崿F(xiàn)商品屬性聯(lián)動選擇
這篇文章主要為大家詳細(xì)介紹了微信小程序?qū)崿F(xiàn)商品屬性聯(lián)動選擇,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2019-02-02