点击图片弹出另一张图再点任意位置关闭弹图代码
时间: 2024-10-17 13:06:44 浏览: 20
要在网页上实现点击图片弹出另一张图并允许用户通过点击任意位置关闭弹出窗口的功能,你可以使用JavaScript结合HTML和CSS来构建这个效果。以下是一个简单的示例代码:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>弹图示例</title>
<style>
.modal {
display: none;
position: fixed;
z-index: 1;
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%;
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
</style>
</head>
<body>
<img id="image1" src="your_first_image.jpg" onclick="showModal('image2')">
<div id="myModal" class="modal">
<span class="close">×</span>
<img id="image2" src="your_second_image.jpg">
</div>
<script>
function showModal(imgId) {
var modal = document.getElementById("myModal");
var img = document.getElementById(imgId);
modal.style.display = "block";
// 获取鼠标点击的位置
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
};
}
// 添加点击图片关闭功能
document.getElementsByClassName("close")[0].onclick = function() {
var modal = document.getElementById("myModal");
modal.style.display = "none";
};
</script>
</body>
</html>
```
在这个例子中,当用户点击`id=image1`的图片时,会触发`showModal('image2')`函数,显示第二张图片。同时,点击页面其他区域或者`class=close`的按钮都会隐藏弹出框。
阅读全文