57 Star 1 Fork 1

CodeMonkeyLin/hrsaas52

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
dialog.html 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
CodeMonkeyLin 提交于 2022-11-29 18:33 . 人资第十天
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<style>
.cov{
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, .2);
display: none;
}
.con{
width:600px;
height:200px;
position: absolute;
background-color:white;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
}
p {
text-align: center;
line-height: 200px;
}
</style>
<body>
<div class = "cov">
<div class = "con">
<p>弹层内容</p>
</div>
</div>
<button>点我出现弹层</button>
</body>
<script>
let bt=document.querySelector('button')
let cov=document.querySelector('.cov')
let con=document.querySelector('.con')
//点击按钮出现弹层 (阻止冒泡)
bt.onclick=function(e) {
cov.style.display='block'
}
// 在弹层里点击时候不关闭弹层(阻止冒泡)
con.onclick=function(e) {
e.stopPropagation()
}
// 点击页面关闭弹层
cov.onclick=function() {
cov.style.display='none'
}
</script>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/github-29244000/hrsaas52.git
git@gitee.com:github-29244000/hrsaas52.git
github-29244000
hrsaas52
hrsaas52
gaodonglin

搜索帮助