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

在上一篇文章中,讲到了单张图片,如何实现点击放大查看,很多读者询问了关于如何在多张图片中实现相同的效果,多张图片需要注意的是,不能给每张图片添加相同的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";
    }
});

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

相关推荐
知识分享小能手10 分钟前
Vue3 学习教程,从入门到精通,Axios 在 Vue 3 中的使用指南(37)
前端·javascript·vue.js·学习·typescript·vue·vue3
程序员码歌3 小时前
【零代码AI编程实战】AI灯塔导航-总结篇
android·前端·后端
用户21411832636023 小时前
免费玩转 AI 编程!Claude Code Router + Qwen3-Code 实战教程
前端
小小愿望5 小时前
前端无法获取响应头(如 Content-Disposition)的原因与解决方案
前端·后端
小小愿望5 小时前
项目启功需要添加SKIP_PREFLIGHT_CHECK=true该怎么办?
前端
烛阴5 小时前
精简之道:TypeScript 参数属性 (Parameter Properties) 详解
前端·javascript·typescript
海上彼尚6 小时前
使用 npm-run-all2 简化你的 npm 脚本工作流
前端·npm·node.js
开发者小天6 小时前
为什么 /deep/ 现在不推荐使用?
前端·javascript·node.js
如白驹过隙7 小时前
cloudflare缓存配置
前端·缓存
excel7 小时前
JavaScript 异步编程全解析:Promise、Async/Await 与进阶技巧
前端