您好,登錄后才能下訂單哦!
為什么要做這個,主要是任務(wù)需要,其次為了不引用過多的插件。
1、先定義一個div,并把它脫離文檔流,這樣他就有機會漂浮在頁面上
2、在定義好的div里寫彈窗的內(nèi)容
3、調(diào)整樣式,設(shè)置定義好的div的高度,滿屏(寬度比較容易,高度就需要定義個函數(shù)來設(shè)置)
4、最后將div的display設(shè)置為none,事件觸發(fā)時再將其展示。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<script src="../sas/js/jquery-1.9.1.min.js" type="text/javascript"></script>
</head>
<style>
.dialog-show{
display: none;
position: absolute;
width: 100%;
padding:0;
text-align: center;
background:rgba(0,0,0,0.5);
filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7F000000,endcolorstr=#7F000000);
top:0;
z-index: 9999;
}
.closeBtn{
position: absolute;
top: 10px;
right: 10px;
color: white;
cursor: pointer;
}
.iframeBox{
margin-top: 30px;
height: 400px;
}
</style>
<body >
<button onclick="showDialog()">查看</button>
<div id="dialogModal" class="dialog-show">
<span class="closeBtn" onclick="closeDialog()">X</span>
<iframe width="80%" class="iframeBox" src="http://baidu.com"></iframe>
<!--<iframe width="80%" src="http://120.36.133.54:1688/Sub/Main/MainFrame.aspx"></iframe>-->
</div>
</body>
<script>
<!--初始化-->
$(function () {
setHeight();
})
//打開彈窗
function showDialog() {
$("#dialogModal").show()
}
//關(guān)閉彈窗
function closeDialog() {
$("#dialogModal").hide()
}
//設(shè)置樣式高度
function setHeight() {
var _useH =$(window).height();
$("#dialogModal").height(_useH)
}
</script>
</html>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。