这篇文章主要为大家详细介绍了JQUERY 图片放大镜的简单示例,具有一定的参考价值,可以用来参考一下。
实现原理:准备2张图片,原大图及缩略图。
/*
* @param
* @arrange (512.笔记) www.q1010.com
**/
<style type="text/css">
.content { margin: auto; width: 800px; border:solid 1px #EAEAEA; position: relative; height: 530px; }
h1 { width:800px; margin: auto; text-align:center; padding:20px; font-family: "微软雅黑"; color: #999; }
h3 { width:800px; margin: auto; text-align:center; padding:20px; font-family: "微软雅黑"; color: #999; }
p { width:800px; margin: 30px auto auto; text-align:left; color: #999; font: 12px/24px "微软雅黑"; border: 1px dashed #E6E6E6; padding: 8px; }
.lxf-large { position: absolute; left: 0px; top: 0px; height: 200px; width: 200px; }
.lxf-mover { -moz-border-radius:100px;border: 3px solid #FFFFFF; overflow: hidden; height: 200px; width: 200px; position: absolute; left: -100px; top: -100px; display: none; -webkit-box-shadow: #ccc 2px 4px 5px; -moz-box-shadow: #ccc 2px 4px 5px; }
.lxf-min { height: 530px; width: 800px; }
</style>
js:
/*
* @param
* @arrange (512.笔记) www.q1010.com
**/
<script src="http://q1010.com/demo/js/jquery-1.6.4.min.js" type="text/javascript"></script>
<script>
$(function(){
var m = $(".lxf-min"), l = $(".lxf-large"), v = $(".lxf-mover"), c = $(".content"), size = 2.74;
m.hover(
function(){
l.load("http://www.q1010.com/demo/magnifier/mbp.<a href="http://q1010.com/" title="html">html</a>");
v.fadeIn();
}
);
c.mousemove(function(e){
var x = e.pageX - c.offset().left;
var y = e.pageY - c.offset().top;
v.<a href="http://q1010.com/" title="css">css</a>({
top: y - 110,
left: x - 110}
);
l.<a href="http://q1010.com/" title="css">css</a>({
left: -(e.pageX - c.offset().left)*size,
top: -(e.pageY - c.offset().top)*size
});
if ((x < -size) || (x > c.width() + size) || (y < -size) || (y > c.height() + size) ){v.fadeOut('slow');};
});
});
</script>
html:
<div class="content">
<div class="lxf-min"><img src="/mbp-min.jpg" width="800" height="530"> </div>
<div class="lxf-mover">
<div class="lxf-large"></div>
</div>
</div>
本文来自:http://www.q1010.com/180/2086-0.html
注:关于JQUERY 图片放大镜的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:放大镜
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。