遮罩层的方式实现点击图片放大

 一个简单demo,需要的取走就是了,我自己也是留个存档,下次遇到同样的需求copy就完事了。

<!doctype html>
<html>
    <head>
        <!-- 声明当前页面的编码集:charset=gbk,gb2312(中文编码) , utf-8(国际编码) -->
        <meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
        <!-- 声明当前页面的三元素 -->
        <title>helloWorld--zxk</title>
        <meta name='keywords' content='关键词,关键词'>
        <meta name='description' content=''>
        <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
    </head>
    <style type="text/css">
        /* 放大图片的盒子样式 */
        #pop-box {
            position: fixed;
            top: 0px;
            left: 0px;
            width: 100%;
            height: 100vh;
            justify-content: center;
            align-items: center;
            display: none;
            z-index: 10;
            background-color: white;
        }
    </style>
    <body>
        <!-- 需要点击放大的图片 -->
        <img src="img/back.png" onclick="openImg(this.src)">

        <!-- 放大之后的图片 -->
        <div id="pop-box" onclick="openImg(this.src)">
            <img id="pop-img" src="">
        </div>
    </body>

    <script>
        // 放大图片的方法
        function openImg(e) {
            document.getElementById("pop-img").src = e;
            var targit = document.getElementById("pop-box");
            if (targit.style.display == "none" || targit.style.display == "") {
                targit.style.display = "flex";
            } else {
                targit.style.display = "none";
            }
        }
    </script>
</html>

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值