<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.clearfix:after {
content: "";
display: block;
clear: both;
}
#btn {
display: block;
font-size: 1.5rem;
padding: 5px;
margin: 0 auto;
cursor: pointer;
}
.panel {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 10px;
width: 300px;
border: 1px solid;
border-radius: 5px;
background: #fff;
display: none;
z-index: 2;
}
.panel .close {
float: right;
margin-top: 15px;
margin-right: 15px;
font-size: 1.15rem;
cursor: pointer;
}
.panel .sure,
.panel .cancel {
border: 1px solid;
border-radius: 5px;
margin: 5px;
padding: 5px;
float: right;
cursor: pointer;
}
.shadow {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #ccc;
opacity: 0.75;
z-index: 1;
display: none;
}
</style>
</head>
<body>
<button id="btn">点我跳出模态框</button>
<div class="panel clearfix">
<div class="close">X</div>
<h1>我是一级标题</h1>
<p>我是一大段文字</p>
<div class="cancel">取消</div>
<div class="sure">确定</div>
</div>
<div class="shadow"></div>
<script>
function $(str) {
return document.querySelector(str);
}
var panel = $(".panel");
var btn = $("#btn");
var close = $(".panel>.close")
var shadow = $(".shadow")
btn.addEventListener("click", function(e) {
e.stopPropagation();
panel.style.display = "block";
shadow.style.display = "block";
})
close.addEventListener("click", function() {
panel.style.display = "none";
shadow.style.display = "none";
})
panel.addEventListener("click", function(e) {
e.stopPropagation();
})
window.addEventListener("click", function() {
panel.style.display = "none";
shadow.style.display = "none";
})
</script>
</body>
</html>
原生JS实现弹出、关闭模态框
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 在网页中我们经常会用到模态框,一般会用于显示表单或者是提示信息。由于模态框涉及到页面上比较多的交互效果,最简单的交...
- 在pc端开发,模态框是一个很常用的插件,之前一直用的第三方插件,比如bootstrap,jQuery的模态框插件,...
- 使用纯 CSS 实现 500px 照片列表布局 文章很长,因为介绍了如何一步一步进化到最后接近完美的效果的,不想读...