放大镜效果(节点操作,鼠标事件,event事件对象,offset)

 

 

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title></title>
    <style>
        * {
            margin: 0;
            padding: 0;
            border: none
        }
        
        img {
            vertical-align: top;
        }
        
        #box {
            width: 350px;
            height: 350px;
            background-color: red;
            margin: 100px 0 0 100px;
            position: relative;
        }
        
        #small_box {
            width: 100%;
            height: 100%;
            border: 1px solid #ccc;
            position: relative;
        }
        
        #small_box img {
            width: 350px;
            height: 350px;
        }
        
        #mask {
            width: 100px;
            height: 100px;
            background-color: rgba(255, 255, 0, .4);
            position: absolute;
            left: 0;
            top: 0;
            cursor: move;
            display: none;
        }
        
        #big_box {
            width: 600px;
            height: 600px;
            border: 1px solid #ccc;
            overflow: hidden;
            position: absolute;
            left: 360px;
            top: 0;
            display: none;
        }
        
        #list {
            margin: 20px 0 0 100px;
        }
        
        #list img {
            margin: 3px;
        }
    </style>
</head>

<body>
    <div id="box">
        <div id="small_box">
            <img src="images/pic001.jpg" alt="">
            <span id="mask"></span>
        </div>
        <div id="big_box">
            <img src="images/pic01.jpg" alt="" style="position: absolute; left:0; top:0;">
        </div>
    </div>
    <div id="list">
        <img src="images/pic0001.jpg" alt="">
        <img src="images/pic0002.jpg" alt="">
        <img src="images/pic0003.jpg" alt="">
    </div>
    <script>
        window.onload = function() {
            // 1. 获取需要的标签
            var box = document.getElementById("box");
            var small_box = box.children[0];
            var big_box = box.children[1];
            var mask = small_box.children[1];
            var big_img = big_box.children[0];
            var list_img = document.getElementById("list").children;

            // 2. 监听鼠标进入小盒子
            small_box.onmouseover = function() {
                // 2.1 把隐藏的内容显示
                mask.style.display = 'block';
                big_box.style.display = 'block';

                // 2.2 监听鼠标的移动
                small_box.onmousemove = function(event) {
                    var event = event || window.event;

                    // 2.3 求出鼠标的坐标
                    var pointX = event.clientX - small_box.offsetParent.offsetLeft - mask.offsetWidth * 0.5;
                    var pointY = event.clientY - small_box.offsetParent.offsetTop - mask.offsetHeight * 0.5;

                    // 2.4 边界检测
                    if (pointX < 0) {
                        pointX = 0;
                    } else if (pointX >= small_box.offsetWidth - mask.offsetWidth) {
                        pointX = small_box.offsetWidth - mask.offsetWidth;
                    }

                    if (pointY < 0) {
                        pointY = 0;
                    } else if (pointY >= small_box.offsetHeight - mask.offsetHeight) {
                        pointY = small_box.offsetHeight - mask.offsetHeight;
                    }

                    // 2.5 让放大镜移动起来
                    mask.style.left = pointX + 'px';
                    mask.style.top = pointY + 'px';

                    // 2.6 让大图移动起来
                    /*
                       smallX / bigX = smallBox.width / 大图的宽度
                       bigX = smallX / ( smallBox.width / 大图的宽度 )
                    */
                    big_img.style.left = -pointX / (small_box.offsetWidth / big_box.offsetWidth) + 'px';
                    big_img.style.top = -pointY / (small_box.offsetHeight / big_box.offsetHeight) + 'px';
                }
            };

            // 3. 监听鼠标离开小盒子
            small_box.onmouseout = function() {
                // 2.1 把隐藏的内容显示
                mask.style.display = 'none';
                big_box.style.display = 'none';
            };

            // 4. 遍历列表图片
            for (var i = 0; i < list_img.length; i++) {
                (function(i) {
                    var img = list_img[i];
                    img.onmouseover = function() {
                        small_box.children[0].src = "images/pic00" + (i + 1) + ".jpg";
                        big_img.src = "images/pic0" + (i + 1) + ".jpg"
                    }
                })(i);
            }
        }
    </script>
</body>

</html>

 

 

 

 

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值