简单的信息弹窗代码HTML
时间: 2023-08-06 13:16:48 浏览: 87
简单HTML代码
以下是一个简单的信息弹窗的HTML代码:
```
<!DOCTYPE html>
<html>
<head>
<title>信息弹窗</title>
<style>
.modal {
display: none;
position: fixed;
z-index: 1;
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.4);
}
.modal-content {
background-color: #fefefe;
margin: auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
max-width: 400px;
}
.close {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
</style>
</head>
<body>
<h2>点击按钮打开信息弹窗</h2>
<!-- 按钮触发弹窗 -->
<button onclick="document.getElementById('myModal').style.display='block'">打开信息弹窗</button>
<!-- 弹窗 -->
<div id="myModal" class="modal">
<!-- 弹窗内容 -->
<div class="modal-content">
<span class="close" onclick="document.getElementById('myModal').style.display='none'">×</span>
<p>这里是弹窗的信息内容。</p>
</div>
</div>
</body>
</html>
```
在这个代码中,我们使用了CSS来定义弹窗的样式,并使用JavaScript来控制弹窗的显示与隐藏。当用户点击按钮时,我们使用 `document.getElementById('myModal').style.display='block'` 来显示弹窗,当用户点击弹窗中的关闭按钮时,我们使用 `document.getElementById('myModal').style.display='none'` 来隐藏弹窗。
阅读全文