<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title></title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
img {
display: block;
}
.smallBox {
width: 200px;
height: 200px;
float: left;
position: relative;
margin-left: 100px;
margin-top: 100px;
border: 1px solid #ccc;
}
.tool {
width: 50px;
height: 50px;
background: #000;
opacity: 0.4;
position: absolute;
top: 0;
left: 0;
cursor: move;
}
.smallImg {
width: 200px;
height: 200px;
}
.smallImg img {
width: 200px;
height: 200px;
}
.bigBox {
width: 200px;
height: 200px;
overflow: hidden;
float: left;
margin-left: 100px;
position: relative;
margin-top: 100px;
border: 1px solid #ccc;
}
.bigImg {
width: 800px;
height: 800px;
}
.bigBox img {
width: 800px;
height: 800px;
position: absolute;
top: 0;
left: 0;
}
</style>
</head>
<body>
<div class="box">
<div class="smallBox">
<div class="tool"></div>
<div class="smallImg">
![](http://upload-images.jianshu.io/upload_images/6574542-2481f7bade27f6f2.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
</div>
</div>
<div class="bigBox">
<div class="bigImg">
![](http://upload-images.jianshu.io/upload_images/6574542-2481f7bade27f6f2.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
</div>
</div>
</div>
</body>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$('.smallBox').mousemove(function(e){
var x = e.pageX - $('.smallBox').offset().left - $('.tool').width()/2;
var y = e.pageY - $('.smallBox').offset().top - $('.tool').height()/2;
//限制下移动范围
var maxLeft = $('.smallBox').width() - $('.tool').width();
var maxTop = $('.smallBox').height() - $('.tool').height();
if(x <= 0){
x = 0;
}
if(x >= maxLeft){
x = maxLeft;
}
if(y <= 0){
y = 0;
}
if(y >= maxTop){
y = maxTop;
}
$('.tool').css({'left': x,'top':y});
//算下比例
var widthNum = $('.bigBox img').width()/$('.smallBox img').width();
var heightNum = $('.bigBox img').height()/$('.smallBox img').height();
$('.bigBox img').css({
'left': -(widthNum*x),
'top': -(heightNum*y)
})
})
</script>
</html>
JQ实现放大镜
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 我在简单封装以下,做成一个插件,稍后更新来更新了,用原生的js模块,真是累,原理都一样,不过看上去模块化,方便一个...
- 本文参考自:http://www.renjihe.com/index.php/archives/776 放大效果:...
- 我庆幸我今天没有对你发脾气,换来你一天的温暖相依与撒娇的称谓 人说孩子是一张白纸,你在上面涂鸦何种色彩,他就给你什...
- 没生孩子之前,我天真的想我一定会是一个好妈妈,会是一个科学育儿的妈妈。哈哈!天真嘛…… 虽然我没有买相关的育儿书籍...