<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
img {
width: 100px;
height: 100px;
}
.pic02 {
display: none;
position: absolute;
top: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
}
.pic02 img {
z-index: 100;
width: 300px;
height: 300px;
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
left: 50%;
}
</style>
</head>
<body>
<img class="pic01" src="https://img.yzcdn.cn/vant/leaf.jpg" alt="">
<img class="pic01" src="https://img.yzcdn.cn/vant/tree.jpg" alt="">
<div class="pic02">
<img src="#" alt="">
</div>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$('.pic01').on('click', function () {
var picSrc = $(this).attr('src')
$('.pic02 img').attr('src', picSrc)
$('.pic02').show()
})
$('.pic02').on('click', function () {
$('.pic02').hide()
})
</script>
</body>
</html>
点击前
点击后