<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modal Dialog</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #f0f2f5;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
justify-content: center;
align-items: center;
}
.modal-content {
background-color: white;
padding: 20px;
border-radius: 8px;
width: 300px;
text-align: center;
}
.modal-content button {
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #007bff;
color: white;
font-size: 1em;
cursor: pointer;
}
.modal-content button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<button onclick="openModal()">Open Modal</button>
<div id="myModal" class="modal">
<div class="modal-content">
<h2>Modal Title</h2>
<p>This is a simple modal dialog.</p>
<button onclick="closeModal()">Close</button>
</div>
</div>
<script>
function openModal() {
document.getElementById('myModal').style.display = 'flex';
}
function closeModal() {
document.getElementById('myModal').style.display = 'none';
}
</script>
</body>
</html>
模态对话框
原创
©著作权归作者所有:来自51CTO博客作者小慕先森的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
模态对话框与非模态对话框
一、 前言要打开一个可以载入页面的子窗口有三种方法,分别是window.open、window.showModalDialog和window.showModelessDial
function javascript url windows scroll -
Qt 模态 非模态对话框 半模态 不阻塞对话框
Qt 模态 非模态对话框 半模态 不阻塞对话框
qt QDialog 非模态对话框 半模态不阻塞对话框 模态对话框 -
8、模态对话框、非模态对话框
模态对话框:其他对话框无法操作,除非此对话框关闭。非模态对话框,无限制。前者用exec()显示,后者show()显示 新建,基类选择QMainWindow,ui取消勾选
#include 非模态对话框 模态 头文件 数据