前端实现多张图片下点击图片进行放大查看

在上一篇文章中,讲到了单张图片,如何实现点击放大查看,很多读者询问了关于如何在多张图片中实现相同的效果,多张图片需要注意的是,不能给每张图片添加相同的id,因为id是唯一的,所以可以用类名代替,并为每张图片添加事件监听器。

效果展示

![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/7115a5c684e54c06b8e328fdb22ff4e5.gif

一、HTML 代码

html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>多张图片点击放大查看</title>
    <link rel="stylesheet" href="index.css">
</head>
<body>
    <img class="zoomable" src="https://tse2-mm.cn.bing.net/th/id/OIF-C.pCiToCj12cyN1rDRkcEfkQ?w=260&h=180&c=7&r=0&o=5&dpr=1.5&pid=1.7" alt="Image 1">
    <img class="zoomable" src="https://tse4-mm.cn.bing.net/th/id/OIP-C.HYdftIoR4dSWe_ePzYColwHaEo?w=272&h=180&c=7&r=0&o=5&dpr=1.5&pid=1.7" alt="Image 2">
    <img class="zoomable" src="https://tse3-mm.cn.bing.net/th/id/OIP-C.I6v11MNVmk8eBo5WFEB0WwHaEK?w=299&h=180&c=7&r=0&o=5&dpr=1.5&pid=1.7" alt="Image 3">
    
    <!-- 模态框:放大查看后图片的位置 -->
    <div id="modal" class="modal">
        <span class="close">&times;</span>
        <img class="modal-content" id="modalImage">
    </div>
    <script src="index.js"></script>
</body>
</html>

二、CSS 代码

css 复制代码
 .zoomable {
     width: 100%;
     max-width: 300px;
     cursor: pointer;
 }

 /* 模态框 */
 .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.2);
 }

 .modal-content {
     margin: auto;
     display: block;
     width: 80%;
     max-width: 700px;
 }

 .modal-content {
     -webkit-animation-name: zoom;
     -webkit-animation-duration: 0.6s;
     animation-name: zoom;
     animation-duration: 0.6s;
 }

 @-webkit-keyframes zoom {
     from {
         -webkit-transform: scale(0)
     }

     to {
         -webkit-transform: scale(1)
     }
 }

 @keyframes zoom {
     from {
         transform: scale(0)
     }

     to {
         transform: scale(1)
     }
 }

 /* 关闭按钮 */
 .close {
     position: absolute;
     top: 15px;
     right: 35px;
     color: #f1f1f1;
     font-size: 40px;
     font-weight: bold;
     transition: 0.3s;
 }

 .close:hover,
 .close:focus {
     color: #bbb;
     text-decoration: none;
     cursor: pointer;
 }

三、JS 代码

js 复制代码
var modal = document.getElementById("modal");

var modalImg = document.getElementById("modalImage");

var images = document.querySelectorAll(".zoomable");

// 遍历为每个图片元素添加事件监听器
images.forEach(function (image) {
    image.addEventListener("click", function () {
        modal.style.display = "block";
        modalImg.src = this.src;
    });
});

var span = document.querySelector(".close");

span.addEventListener("click", function () {
    modal.style.display = "none";
});

modal.addEventListener("click", function (event) {
    if (event.target == modal) {
        modal.style.display = "none";
    }
});

这样就可以实现在有多张图片的情况下,也能正常实现放大查看并关闭

相关推荐
LaughingZhu22 分钟前
Product Hunt 每日热榜 | 2026-04-05
前端·数据库·人工智能·经验分享·神经网络
SuperEugene1 小时前
Vue3 组件复用设计:Props / 插槽 / 组合式函数,三种复用方式选型|组件化设计基础篇
前端·javascript·vue.js
nFBD29OFC1 小时前
利用Vue元素指令自动合并tailwind类名
前端·javascript·vue.js
ISkp3V8b42 小时前
ASP.NET MVC]Contact Manager开发之旅之迭代2 - 修改样式,美化应用
前端·chrome
Highcharts.js2 小时前
高级可视化图表的暗色模式与主题|Highcharts 自适应主题配色全解
前端·react.js·实时图表
zk_one3 小时前
【无标题】
开发语言·前端·javascript
precious。。。5 小时前
1.2.1 三角不等式演示
前端·javascript·html
小陈工5 小时前
Python Web开发入门(十一):RESTful API设计原则与最佳实践——让你的API既优雅又好用
开发语言·前端·人工智能·后端·python·安全·restful
星空5 小时前
前段--A_2--HTML属性标签
前端·html
a1117765 小时前
MapDesigner (html开源项目)六角格地图设计工具
开源·html