本文实例讲述了JavaScript实现京东购物放大镜和选项卡效果的方法。分享给大家供大家参考,具体如下:
购物网站点击商品后,都会有一个查看物品图片,并且可以放大仔细观察物品的功能。这个功能看起来复杂,其实实现起来非常简单。下面我们来一起做这个小效果吧!
首先,我们看一下页面的布局:
1.小图片显示区,上面有一个方形遮罩层 2.缩略图横向列表 3.大图显示区域
然后,我们写出开发步骤:
1.编写3个区域的html布局,使他们位于同一个容器内 2.显示区域2的图片列表 3.给区域2的图片添加mouSEOver事件,使图片显示在区域1内 4.鼠标移入区域1,生成半透明的选择框 5.区域3显示区域2选择框对应的图片位置放大的效果 6.鼠标移除区域2,区域3隐藏
最后,根据需求写出相应代码:
html和css:
ul{
list-style: none;
padding: 0;
}
.zoom-Box{
position: relative;
width: 452px;
}
.small-Box{
border: 1px solid #ccc;
position: relative;
}
.small-Box .square{
position: absolute;
background-color: yellow;
opacity: 0.5;
display: none;
}
.small-Box .mask{
width: 100%;
height: 100%;
opacity: 0;
position: absolute;
top:0;
left:0;
}
.img-list ul:after{
clear: both;
content: '';
display: table;
}
.img-list ul li{
float: left;
padding: 0 8px;
}
.img-list img{
border: 2px solid transparent;
}
.img-list img.active{
border: 2px solid red;
}
.big-Box{
position: absolute;
top:0;
left: 100%;
margin-left: 2px;
width: 500px;
height: 500px;
border: 1px solid #ccc;
display: none;
overflow: hidden;
}
.big-Box img{
position: absolute;
}
Box">
Box">
Box">
js代码:
var smallBox=$('.small-Box .mask');
var smallImg=$('.small-Box img');
var square=$('.square');
var imagesList=$all('.img-list img');
var bigBox=$('.big-Box');
var bigImg=$('.big-Box img');
//选项卡切换
for(var i=0;iSEOver=function () {
for (var j=0;jBox.onmouSEOver=function () {
square.style.display='block';
bigBox.style.display='block';
//利用比例公式计算square的宽高
//square的宽/smallImg的宽 = bigBox的宽/bigIma的宽
square.style.width=smallImg.offsetWidth * bigBox.offsetWidth / bigImg.offsetWidth + 'px';
square.style.height=smallImg.offsetHeight * bigBox.offsetHeight / bigImg.offsetHeight + 'px';
};
//鼠标移出事件
smallBox.onmouSEOut=function () {
square.style.display='none';
bigBox.style.display='none';
};
//鼠标移动事件
smallBox.onmousemove=function (e) {
var e=e||window.event;
var x,y;
//x和y的坐标
x=e.offsetX-square.offsetWidth/2;
y=e.offsetY-square.offsetHeight/2;
if(x<0){
x=0;
}
if(x>smallBox.offsetWidth-square.offsetWidth){
x=smallBox.offsetWidth-square.offsetWidth;
}
if(y<0){
y=0;
}
if(y>smallBox.offsetHeight-square.offsetHeight){
y=smallBox.offsetHeight-square.offsetHeight;
}
square.style.left=x+'px';
square.style.top=y+'px';
//利用公式计算大图的坐标
//
//
bigImg.style.left=-x * bigImg.offsetWidth / smallImg.offsetWidth + 'px';
bigImg.style.top=-y * bigImg.offsetHeight / smallImg.offsetHeight + 'px';
};
function $(name) {
return document.querySelector(name);
}
function $all(name) {
return document.querySelectorAll(name);
}
大家可以做一下看看效果:
添加一个mask的div是因为,如果直接在smallBox上添加事件,会受到其中的子元素的影响,导致图片抖动。而对一个空内容的mask操作就不会有影响了。
更多关于JavaScript相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》及《用法总结》
希望本文所述对大家JavaScript程序设计有所帮助。
原文链接:https://www.f2er.com/js/31670.html