为什么要做这个,主要是任务需要,其次为了不引用过多的插件。
1、先定义一个div,并把它脱离文档流,这样他就有机会漂浮在页面上
2、在定义好的div里写弹窗的内容
3、调整样式,设置定义好的div的高度,满屏(宽度比较容易,高度就需要定义个函数来设置)
4、最后将div的display设置为none,事件触发时再将其展示。
<!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()
}
//关闭弹窗
function closeDialog() {
$("#dialogModal").hide()
}
//设置样式高度
function setHeight() {
var _useH =$(window).height();
$("#dialogModal").height(_useH)
}
</script>
</html>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。