JavaScript实现放大镜效果
本文实例为大家分享了javascript实现放大镜效果的具体代码,供大家参考,具体内容如下
这次实现的效果如下:
这次的案例稍微有一点难度,在css和js上都需要多加思考,话不多说,让我们来开始吧~
1、首先我们需要使用html和css规划好整体的布局,即两个相邻的盒子a和b,左边的盒子a中还有一个小盒子s。为了实现相邻,我采用的方法是为其均设置position:absolute
,然后设置left
和top
的值来使其相邻。
小盒子s我们同样可以为其设置position:absolute
,调整一下背景颜色即可。
2、然后我们需要使用js来设置动画效果,即:鼠标放在盒子a上时,小盒子s的位置会随着鼠标的移动发生移动,同时盒子b中的图像会成为盒子s覆盖图像的放大版。如何实现呢?
3、首先实现小盒子s的位置变化:调用盒子a的onmousemove
函数,传入参数client,表示时间鼠标在盒子a上移动。我们通过client获取鼠标的位置(clientx,clienty),然后通过(clientx-boxa.offsetleft,clienty-boxa.offsettop)
可获得鼠标在图像上的相对坐标,通过此值减去盒子s的宽度、高度的一半即可获得盒子s在a中的位置。
但是要注意,记得为盒子s设置边界,当横坐标为0或为a盒子宽度、纵坐标为0或者a盒子高度时,要使其坐标固定。
4、接着实现盒子b中的图像会成为盒子s覆盖图像的放大版:我们首先来思考一个问题,这个放大效果如何才能实现呢? 从我的实现角度出发,对于盒子b来说,它首先需要一个背景图==盒子a中的图像,然后将其放大某个倍数x,当盒子s移动时,改变b的background-position
为y,达到放大+移动的效果。
5、最后一点,x和y的值是多少呢?(假定s、a、b均为等比例) x:将盒子b放大的倍数应该等同于a的大小除以s的大小,这样能达到相同的图像范围。y:b移动时的距离变化应该示盒子s移动的距离*(盒子b的大小除以s的大小)。可以多加思考~
可能我的实现方法过程比较复杂,大家如果想到更好的方法可以留言呀
代码如下:
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>document</title> <style> * { margin: 0; padding: 0; } #box { position: absolute; left: 180px; top: 100px; } #box img { width: 400px; height: 300px; border: 1px solid rgba(255, 255, 255, 0.7); vertical-align: bottom; } #nav { width: 480px; height: 360px; border: 1px solid rgba(255, 255, 255, 0.7); position: absolute; left: 582px; top: 100px; background-image: url(../img/morn.jpg); background-repeat: no-repeat; background-size: 250% 250% } #small { width: 160px; height: 120px; position: absolute; } </style> </head> <body> <div id="box"> <div id="small"></div> <img src="../img/morn.jpg" alt=""> </div> <div id="nav"></div> <script> let box = document.getelementbyid("box"); let small = document.getelementbyid("small"); let nav = document.getelementbyid("nav"); box.onmousemove = function (client) { let x = client.clientx - box.offsetleft; let y = client.clienty - box.offsettop; small.style.left = x - 80 + 'px'; small.style.top = y - 60 + 'px'; let dis_x = box.offsetleft + box.offsetwidth - client.clientx; let dis_y = box.offsettop + box.offsetheight - client.clienty; nav.style.backgroundpositionx = (80 - x) * 3 + 'px'; nav.style.backgroundpositiony = (60 - y) * 3 + 'px'; if (x - 80 < 0) { small.style.left = 0; nav.style.backgroundpositionx = 0; } if (dis_x <= 80) { small.style.left = box.offsetwidth - 160 + 'px'; nav.style.backgroundpositionx = (160 - box.offsetwidth) * 3 + 'px'; } if (y - 60 < 0) { small.style.top = 0; nav.style.backgroundpositiony = 0; } if (dis_y < 60) { small.style.top = box.offsetheight - 120 + 'px'; nav.style.backgroundpositiony = (120 - box.offsetheight) * 3 + 'px'; } small.style.backgroundcolor = "rgba(135, 207, 235, 0.61)"; } box.onmouseout = function () { small.style.backgroundcolor="transparent" } </script> </body> </html>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。