• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

JavaScript实现商品放大镜效果

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文实例为大家分享了JavaScript实现商品放大镜的具体代码,供大家参考,具体内容如下

HTML+CSS部分:

<style>
        .small{
            position: relative;
            width: 400px;
            height: 450px;
            border: 1px solid #ccc;
        }
        .small img{
            width: 100%;
            height: 100%;
        }
        .small .mask{
            position: absolute;
            left: 0;
            top: 0;
            width: 300px;
            height: 300px;
            background-color: rgba(0, 255, 0, .2);
        }
        .big{
            position: absolute;
            left: 450px;
            top: 8px;
            width: 550px;
            height: 550px;
            border: 1px solid #ccc;
            overflow: hidden;
            display: none;
        }
        .big img{
            position: absolute;
            left: 0;
            top: 0;
        }
    </style>
 
<body>
    <div class="small">
        <img src="./img/small.jpg">
        <div class="mask"></div>
    </div>
    <div class="big">
        <img src="./img/big.jpg">
    </div>
</body>

JS部分:

<script>
        var small=document.querySelector('.small');
        var mask=document.querySelector('.mask');
        var big=document.querySelector('.big');
        var bigImg=document.querySelector('.big>img');
        // 拿到大图的宽高
        var bigWidth=bigImg.offsetWidth;
        var bigHeight=bigImg.offsetHeight;
 
        // 
        function move(e){
            var x=e.pageX - this.offsetLeft;
            var y=e.pageY - this.offsetTop;
            console.log(x,y);
            // 移动遮罩位置
            var maskHeight = mask.offsetHeight/2;
            var maskWidth = mask.offsetWidth/2;
            mask.style.left = x - maskWidth+'px';
            mask.style.top = y - maskHeight+'px';
 
        // 限制遮罩的移动范围
            // console.log('mask.offsetTop',mask.offsetTop);
            // console.log('mask.offsetLeft',mask.offsetLeft);
            var maxLeft=small.offsetWidth - mask.offsetWidth;
            if(mask.offsetTop<0){
                mask.style.top=0;
            }
            if(mask.offsetLeft > small.offsetWidth - mask.offsetWidth){
                mask.style.left =maxLeft+'px';
            }
            if(mask.offsetLeft<0){
                mask.style.left = 0;
            }
            if(mask.offsetTop > small.offsetHeight - mask.offsetHeight){
                mask.style.top = small.offsetHeight - mask.offsetHeight + 'px';
            }
 
        // bigImg 大图  big  大盒子     大图的移动
        // (bigImg.offsetWidth - big.offsetWidth) / (samll.offsetWidtth - mask.offsetWidth)
        //   大图的最大移动距离  = - 遮罩的移动距离 * 大图的最大距离 / 遮罩的最大移动距离
            bigImg.style.left = -mask.offsetLeft*(bigImg.offsetWidth - big.offsetWidth) / (small.offsetWidth - mask.offsetWidth)+"px";
            bigImg.style.top = -mask.offsetTop*(bigImg.offsetHeight - big.offsetHeight) / (small.offsetHeight - mask.offsetHeight)+"px";
        }
       
        // 小图上移动遮罩
        small.addEventListener('mousemove',move);
        small.addEventListener('mouseover',function(){
            big.style.display='block';
            mask.style.display='block';
        })
        small.addEventListener('mouseout',function(){
            big.style.display='none';
            mask.style.display='none';
        })
</script>

效果演示:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持极客世界。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
JS中的六种继承方式以及优缺点总结发布时间:2022-02-05
下一篇:
react四种组件中DOM样式设置方式详解发布时间:2022-02-05
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap