码迷,mamicode.com
首页 > 其他好文 > 详细

前端放大镜特效

时间:2020-06-16 23:49:49      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:||   mono   html   line   cti   部分   class   简单实现   移动   

pc端购物网站的商品有些具有放大镜特效,自己简单实现了一下

html部分

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

<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <link rel="stylesheet" href="index.css">
</head>

<body>
    <div id="wrap">
        <div class="small_box">
            <img src="images/c2.jpg" alt="">
            <span id="mask"></span>
        </div>
        <div class="big_box">
            <img id="bigImg" src="images/c1.jpg" alt="">
        </div>
    </div>
    <div class="list">
        <img src="images/c2.jpg" alt="">
        <img src="images/d2.jpg" alt="">
        <img src="images/g2.jpg" alt="">
    </div>
    <script src="index.js"></script>
</body>

</html>
 
 
css部分·
 
* {
    padding0;
    margin0;
    bordernone;
}

img {
    vertical-aligntop;
}

#wrap {
    width350px;
    height350px;
    background#e71208;
    margin50px 0 0 50px;
    positionrelative;
}

.small_box {
    width100%;
    height100%;
    border1px solid #ccc;
    positionrelative;
}

#mask {
    width100px;
    height100px;
    backgroundrgba(2552550.4);
    positionabsolute;
    left0;
    top0;
    cursormove;
    displaynone;
}

.big_box {
    width500px;
    height500px;
    border1px solid #ccc;
    positionabsolute;
    top0;
    left360px;
    overflowhidden;
    displaynone;
}

.big_box img {
    width100%;
    height100%;
    positionabsolute;
    left0;
    top0;
}

.list {
    width450px;
    margin-top40px;
    text-aligncenter;
}

.list img {
    width100px;
    height100px;
    border1px solid rebeccapurple;
    cursorpointer;
    margin5px;
}
js部分
 
window.onload = function() {
    let wrap = document.getElementById("wrap")
    let bigBox = document.getElementsByClassName("big_box")[0]
    let smallBox = document.getElementsByClassName("small_box")[0]
    let mask = document.getElementById("mask")
    let bigImg = document.getElementById("bigImg")
    let list = document.getElementsByClassName("list").children

    //监听鼠标进入小盒子
    smallBox.onmouseover = function() {
        mask.style.display = "block"
        bigBox.style.display = "block"
    }

    //监听鼠标移动
    smallBox.onmousemove = function() {
        let e = window.event || arguments[0]
            //求出鼠标的坐标
        let pointX = e.clientX - smallBox.offsetParent.offsetLeft
        let pointY = e.clientY - smallBox.offsetParent.offsetTop
            //让放大镜移动
            //让鼠标在mask中心
        pointX = pointX - mask.offsetWidth * 0.5
        pointY = pointY - mask.offsetHeight * 0.5
            //边界检测
        if (pointX < 0) {
            pointX = 0
        } else if (pointX >= smallBox.offsetWidth - mask.offsetWidth) {
            pointX = smallBox.offsetWidth - mask.offsetWidth
        }
        if (pointY < 0) {
            pointY = 0
        } else if (pointY >= smallBox.offsetHeight - mask.offsetHeight) {
            pointY = smallBox.offsetHeight - mask.offsetHeight
        }

        mask.style.left = pointX + "px"
        mask.style.top = pointY + "px"

        //大图移动
        bigImg.style.left = -pointX / (smallBox.offsetWidth / bigBox.offsetWidth) + "px"
        bigImg.style.top = -pointY / (smallBox.offsetHeight / bigBox.offsetHeight) + "px"
    }

    //监听鼠标离开小盒子
    smallBox.onmouseout = function() {
        mask.style.display = "none"
        bigBox.style.display = "none"
    }

}
 放大镜大图移动公式
smallX/bigX(坐标)=smallbox.width/大图宽度
bigX=smallX/(smallbox.width/大图宽度)

前端放大镜特效

标签:||   mono   html   line   cti   部分   class   简单实现   移动   

原文地址:https://www.cnblogs.com/wywd/p/13149596.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!