Html点击实现图片预览和查看原图 原创 朱雀 2021-05-21 10:06 122509阅读 7赞 最近博客有个需求,需要在文章页面,点击文章内的图片放大,再次点击缩小。写完之后特别分享一下。 源代码: ```` <!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <meta name="viewport" content="width=device-width,initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/> <title>蒲公英云</title> </head> <script src="https://dandelioncloud.cn/webjars/jquery/3.1.1/jquery.min.js"></script> <body> <style type="text/css"> .imgViewDom { display: none; } .disnone{ background: rgba(255, 255, 255, 0.8); position: fixed; top: 0; left: 0; height: 100%; width: 100%; z-index: 99999999; overflow: auto; display: -webkit-box; -webkit-box-align: center; -webkit-box-pack: center; display: -moz-box; -moz-box-align: center; -moz-box-pack: center; display: -o-box; -o-box-align: center; -o-box-pack: center; display: -ms-box; -ms-box-align: center; -ms-box-pack: center; display: box; box-align: center; box-pack: center; } </style> <script> $(document).ready(function () { $(".imgViewDom2 img").click(function () { let imageSrc = $(this).attr("src"); let jQuery = $('.imgViewDom').attr("src"); console.log(imageSrc); if (jQuery==null){ $(".imgViewDom img").attr("src",imageSrc); $(".imgViewDom").attr("class","imgViewDom disnone"); } else { $(".imgViewDom").attr("class","imgViewDom"); } }); $(".imgViewDom img").click(function () { $(".imgViewDom").attr("class","imgViewDom"); }); }); </script> <div class="imgViewDom" style=""> <img src=""> </div> <div class="imgViewDom2"> <img src="https://dandelioncloud.cn/images/20210510/1620613628986.png"> </div> </body> </html> ```` 效果演示我们依旧使用站内的:https://dandelioncloud.cn/tool/codedemo 然后将代码考入进去点击调试预览 ![](/images/20210521/1621591450631.png) ![](/images/20210521/1621591505253.png) ![](/images/20210521/1621591515022.png) 点击图片预览,再点击返回。完成。 文章版权声明:注明蒲公英云原创文章,转载或复制请以超链接形式并注明出处。
相关 Vue实现点击上传图片预览图片功能 效果 ![在这里插入图片描述][watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nL... 曾经终败给现在/ 2024年04月18日 21:39/ 0 赞/ 181 阅读
相关 纯js实现点击预览图片效果 效果如图所示 ![watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0 灰太狼/ 2023年06月20日 10:53/ 0 赞/ 707 阅读
相关 uni-app点击预览图片 <image :src="info.shopLogoUrl" @tap="_previewImage(info.shopLogoUrl)" mode="widthFi 朴灿烈づ我的快乐病毒、/ 2022年12月02日 00:43/ 0 赞/ 808 阅读
相关 HTML5点击图片查看大图,科技常识:HTML5 实现图片预览和查看原图 今天小编跟大家讲解下有关HTML5 实现图片预览和查看原图 ,相信小伙伴们对这个话题应该有所关注吧,小编也收集到了有关HTML5 实现图片预览和查看原图 的相关资料,希望小伙伴 我会带着你远行/ 2022年10月06日 13:53/ 0 赞/ 1184 阅读
相关 微信图片点击预览 $(function(){ var imgsurl=[]; var nowurl=''; var imgObj=$(".swi 快来打我*/ 2022年06月08日 09:50/ 0 赞/ 890 阅读
相关 html页面点击图片名称查看图片------图片预览插件viewer.js使用 前言 在做项目时,会遇到在前台展示附件详情,比如图片,word,pdf等。viewer.js 图片查看器,用来查看页面中的图片。 基本效果: ![70][] V 太过爱你忘了你带给我的痛/ 2022年05月17日 08:47/ 0 赞/ 1200 阅读
相关 layui 表格中实现照片预览,点击查看原图 人员表格中实现照片预览,并且可点击放大。查看原图 <table id="dutyInfoTable" class="layui-hide"></table> js 男娘i/ 2021年11月23日 11:20/ 0 赞/ 1550 阅读
相关 uniapp 实现图片预览 单图预览和多图预览 uniapp 实现图片预览 单图预览和多图预览 关键点就是调用 uni.previewImage({ current: index, 落日映苍穹つ/ 2021年09月02日 03:18/ 0 赞/ 2358 阅读
相关 uni-app点击预览图片 <image :src="info.shopLogoUrl" @tap="_previewImage(info.shopLogoUrl)" mode="widthFi 忘是亡心i/ 2021年07月24日 21:31/ 1 赞/ 1482 阅读
相关 Html点击实现图片预览和查看原图 最近博客有个需求,需要在文章页面,点击文章内的图片放大,再次点击缩小。写完之后特别分享一下。 源代码: <!DOCTYPE html> <html> <head> ... 朱雀/ 2021年05月21日 10:06/ 7 赞/ 122510 阅读