Home  >  Article  >  Web Front-end  >  jquery magnifying glass effect is super beautiful_jquery

jquery magnifying glass effect is super beautiful_jquery

WBOY
WBOYOriginal
2016-05-16 17:15:061190browse

The code for this magnifying glass is quite simple and the effect is good.

Copy code The code is as follows:

<script> <br>//QQ:496928838 Weiliang<br>$(function(){ <br>$("#demo").enlarge( <br>{ <br>// Mouse mask layer style<br>shadecolor: "#FFD24D", <br>shadeborder: "#FF8000", <br>shadeopacity: 0.4, <br>cursor: "move", <br><br>// Large image outer style<br>layerwidth: 480, <br>layerheight: 360 , <br>layerborder: "#DDD", <br>fade: true, <br><br>// Large image size<br>largewidth: 960, <br>largeheight: 720 <br>}); <br>}); <br><br></script>






jquery magnifying glass effect is super beautiful_jquery
jquery magnifying glass effect is super beautiful_jquery
Copy Code The code is as follows:

/*
Enlarge for jQuery v1.0
Abel Yao, 2013
*/
(function (e){var i={shadecolor:"#FFD24D",shadeborder:"#FF8000",shadeopacity:.5,cursor:"move",layerwidth:400,layerheight:300,layerborder:"#DDD",fade: true,largewidth:1280,largeheight:960};var t=function(t){t=e.extend({},i,t);e(this).each(function(){var i=e(this ).css("position","relative");var h=i.children().first();var r={x:h.width()/t.largewidth,y:h.height()/ t.largeheight};var o={shade:{width:t.layerwidth*r.x-2,height:t.layerheight*r.y-2}};var a=e("
").css({ position:"absolute",left:"0px",top:"0px","background-color":t.shadecolor,border:"1px solid " t.shadeborder,width:o.shade.width,height:o. shade.height,opacity:t.shadeopacity,cursor:t.cursor});a.hide().appendTo(i);var d=e("").css({position:"absolute" ,display:"block",width:t.largewidth,height:t.largeheight});var s=e("
").css({position:"absolute",left:i.width() 5,top:0,"background-color":"#111",overflow:"hidden",width:t.layerwidth,height:t.layerheight,border:"1px solid " t.layerborder});d.attr ("src",i.attr("href"));d.appendTo(s);s.hide().appendTo(i);var n={x:o.shade.width/2,y:o .shade.height/2};var l={width:i.innerWidth()-a.outerWidth(),height:i.innerHeight()-a.outerHeight()};var g=function(){a. show();if(t.fade)s.stop().fadeIn(300);else s.show()};var c=function(){a.hide();s.hide()};var f=i.offset();i.mousemove(function(e){var t=e.pageX-f.left;var h=e.pageY-f.top;if(t<0||t>i. innerWidth())return c();if(h<0||h>i.innerHeight())return c();t=t-n.x;h=h-n.y;if(t<0)t=0 ;if(h<0)h=0;if(t>l.width)t=l.width;if(h>l.height)h=l.height;a.css({left:t,top: h});d.css({left:0-t/r.x,top:0-h/r.y})}).mouseenter(g).mouseleave(c)})};e.fn.extend({enlarge :t})})(jQuery);

Download address: http://pan.baidu.com/s/1zilrC
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn