3 Star 18 Fork 7

杨得朝/web-test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
jquery实现弹出层完美居中效果.html 2.24 KB
一键复制 编辑 原始数据 按行查看 历史
杨得朝 提交于 2020-07-14 15:39 . submit
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
/*弹出层的STYLE*/
html,
body {
height: 100%;
margin: 0px;
font-size: 12px;
}
.mydiv {
background-color: #ff6;
border: 1px solid #f90;
text-align: center;
line-height: 40px;
font-size: 12px;
font-weight: bold;
z-index: 99;
width: 300px;
height: 120px;
left: 50%;
/*FF IE7*/
top: 50%;
/*FF IE7*/
margin-left: -150px !important;
/*FF IE7 该值为本身宽的一半 */
margin-top: -60px !important;
/*FF IE7 该值为本身高的一半*/
margin-top: 0px;
position: fixed !important;
/*FF IE7*/
position: absolute;
/*IE6*/
_top: expression(eval(document.compatMode && document.compatMode=='CSS1Compat') ? documentElement.scrollTop + (document.documentElement.clientHeight-this.offsetHeight)/2:
/*IE6*/
document.body.scrollTop + (document.body.clientHeight - this.clientHeight)/2);
/*IE5 IE5.5*/
}
.bg {
background-color: #ccc;
width: 100%;
height: 100%;
left: 0;
top: 0;
/*FF IE7*/
filter: alpha(opacity=50);
/*IE*/
opacity: 0.5;
/*FF*/
z-index: 1;
position: fixed !important;
/*FF IE7*/
position: absolute;
/*IE6*/
_top: expression(eval(document.compatMode && document.compatMode=='CSS1Compat') ? documentElement.scrollTop + (document.documentElement.clientHeight-this.offsetHeight)/2:
/*IE6*/
document.body.scrollTop + (document.body.clientHeight - this.clientHeight)/2);
/*IE5 IE5.5*/
}
/*The END*/
</style>
<script type="text/javascript">
function showDiv() {
document.getElementById('popDiv').style.display = 'block';
document.getElementById('bg').style.display = 'block';
}
function closeDiv() {
document.getElementById('popDiv').style.display = 'none';
document.getElementById('bg').style.display = 'none';
}
</script>
</head>
<body>
<div id="popDiv" class="mydiv" style="display:none;">标题<br />你懂得<br />
<a href="javascript:closeDiv()">关闭窗口</a></div>
<div id="bg" class="bg" style="display:none;"></div>
</body>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/yangdechao_admin/web-test.git
git@gitee.com:yangdechao_admin/web-test.git
yangdechao_admin
web-test
web-test
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385