使用js写一个漂亮的弹出框
时间: 2023-10-04 13:05:31 浏览: 140
漂亮的jquery弹出框插件 zeroModal.zip
以下是一个基本的弹出框样式和 JavaScript 代码,你可以根据你的需求进行修改和美化:
```html
<!-- 弹出框的 HTML 代码 -->
<div id="modal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<p>这是一个弹出框。</p>
</div>
</div>
<!-- 在页面底部添加弹出框的样式 -->
<style>
.modal {
display: none; /* 默认隐藏弹出框 */
position: fixed; /* 固定定位 */
z-index: 1; /* 设置 z-index,确保弹出框显示在其他元素之上 */
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto; /* 添加滚动条,以便在内容太长时可以滚动 */
background-color: rgba(0,0,0,0.4); /* 添加半透明的背景 */
}
.modal-content {
background-color: #fefefe;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
max-width: 600px;
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
</style>
<!-- 在页面底部添加弹出框的 JavaScript 代码 -->
<script>
// 获取弹出框、关闭按钮和内容元素
const modal = document.getElementById("modal");
const closeBtn = document.querySelector(".close");
const content = document.querySelector(".modal-content");
// 当用户点击关闭按钮或弹出框之外的区域时,关闭弹出框
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
};
// 当用户点击关闭按钮时,关闭弹出框
closeBtn.onclick = function() {
modal.style.display = "none";
};
// 显示弹出框
function showModal() {
modal.style.display = "block";
}
</script>
```
这个弹出框包含一个半透明的背景和一个浮动在中央的内容框。你可以根据需要修改样式,例如更改背景颜色、边框样式、字体大小等等。
要显示弹出框,可以调用 `showModal()` 函数。例如在按钮的点击事件中调用该函数:
```html
<button onclick="showModal()">显示弹出框</button>
```
阅读全文