效果图:
代码实现:
HTML.
<!-- 原图盒子 -->
<div class="small-box">
<!-- 放大镜-->
<div class="float-box"> <!-- 蒙层 --></div>
<img src="PICTURE/d.jpg" class="small-img">
<!-- 大图显示-->
<div class="big-box">
<img class="big-img" src="PICTURE/d.jpg">
</div>
</div>
CSS.
/*原图盒子*/
.small-box {
position: relative; /*原图盒子相对定位(其他都绝对)*/
width:400px;
height:400px;
}
/*原图*/
.small-img {
width: 100%;
height: 100%;
}
/*滑块*/
.floa