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

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

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

相关推荐
江城开朗的豌豆16 小时前
解密DVA:React应用的状态管理利器
前端·javascript·react.js
带娃的IT创业者16 小时前
《Python Web部署应知应会》No3:Flask网站的性能优化和实时监测深度实战
前端·python·flask
weixin_4316004416 小时前
使用 vue-virtual-scroller 实现高性能传输列表功能总结
前端·javascript·vue.js
OEC小胖胖16 小时前
App Router vs. Pages Router:我应该如何选择?
开发语言·前端·前端框架·web·next.js
Wiktok17 小时前
【Wit】pure-admin后台管理系统前端与FastAPI后端联调通信实例
前端·vue3·pureadmin
陆康永17 小时前
弹窗分页保留其他页面勾选的数据(vue)
前端·javascript·vue.js
IT_陈寒17 小时前
Vite 5.0重磅升级:8个性能优化秘诀让你的构建速度飙升200%!🚀
前端·人工智能·后端
Run Freely93717 小时前
Ajax-day2(图书管理)-弹框显示和隐藏
前端·javascript·ajax
GDAL17 小时前
Knockout.js Virtual Elements 详解
前端·javascript·knockout
百思可瑞教育18 小时前
Vue.config.js中的Webpack配置、优化及多页面应用开发
前端·javascript·vue.js·webpack·uni-app·北京百思教育