zl程序教程

您现在的位置是:首页 >  前端

当前栏目

javascript放大镜效果的简单实现

JavaScript 实现 简单 效果 放大镜
2023-06-13 09:15:13 时间

这个效果并不难,要点是位置和比例设置,

捕获鼠标位置、判断鼠标位置区域、还有onmouseover事件、onmousemove事件、onmouseout事件

设置显示大图的比例,小图上显示的切图比例都要弄准确点,最好是2倍啦,4倍啦。

主要注意宽度,我这里的图片m.jpg是1440X900的....

复制代码代码如下:

<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXhtml1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8">
<title>放大镜效果</title>
<styletype="text/css">
*{margin:0;padding:0;}
#smallimg{width:360px;float:left;position:relative;border:1pxsolidred;}
#smallimgimg{ width:360px;}
#bigimg{float:left;width:400px;height:400px;margin-left:40px;border:1pxsolid#ccc;display:none;}
#showimg{width:100px;height:100px;background:#fff;cursor:move; position:absolute;border:1pxsolid#666;opacity:0.5;filter:alpha(opacity=50);display:none;}
</style>
</head>
<body>
<divid="smallimg">
 <imgsrc="jq/m.jpg"alt=""/>
 <divid="showimg"> </div>
</div>
<divid="bigimg"> </div>


<scripttype="text/javascript">
var$=function(id){returntypeofid=="string"?document.getElementById(id):id}
varsmallimg=$("smallimg");
varshowimg=$("showimg");//滤镜图片
varbigimg=$("bigimg");
varsmall_url=smallimg.getElementsByTagName("img")[0].getAttribute("src");
varshow_half=maxWidth=maxHeight=0;
smallimg.onmouseover=function(){
 showimg.style.display="block";
 bigimg.style.display="inline";
 show_half=showimg.offsetHeight/2;
 maxWidth=smallimg.clientWidth-showimg.offsetWidth;
 maxHeight=smallimg.clientHeight-showimg.offsetHeight;
 //上面两个变量指明showimg允许活动的区域
};
smallimg.onmousemove=function(e){
 vare=window.event?window.event:e;
 varnum=bigimg.clientWidth/showimg.clientWidth;
 varTop=e.clientY-smallimg.offsetTop-show_half;
 varLeft=e.clientX-smallimg.offsetLeft-show_half;
 //获取当前移动的showimg位置计算方法是鼠标坐标-最外面容器的坐标-盒子的宽(高)的/2
 Top=Top<0?0:Top>maxHeight?maxHeight:Top;
 Left=Left<0?0:Left>maxWidth?maxWidth:Left;
 showimg.style.top=Top+"px";
 showimg.style.left=Left+"px";
 bigimg.style.background="url("+small_url+")-"+Left*num+"px-"+Top*num+"pxno-repeat";
};
smallimg.onmouseout=function(){
 showimg.style.display="none";
 bigimg.style.background="";
 bigimg.style.display="none"
};
</script>
</body>
</html>