電子商務圖片放大jqzoom

快雪時晴天發表於2016-07-03

http://www.mind-projects.it/ 官網 地址下載jqzoom.js 最流行的圖片放大鏡

jqzoom外掛實現圖片放大鏡效果。

圖1.1jqzoom外掛實現圖片放大鏡效果

1、引入jqurty和jqzoom外掛

 

[javascript] view plaincopyprint?
  1. <script src="/js/common/jquery-1.6.2.js" type="text/javascript"></script>  
  2. <script src="/js/common/jquery.jqzoom.js" type="text/javascript"></script>  

2、應用官方網站給定的樣式

  1. /*jQzoom*/  
  2. .jqzoom{  
  3.     border:1px solid #BBB;  
  4.     float:left;  
  5.     position:relative;  
  6.     padding:0px;  
  7.     cursor:pointer;  
  8. }  
  9. div.zoomdiv {  
  10.     z-index:    999;  
  11.     position                : absolute;  
  12.     top:0px;  
  13.     left:0px;  
  14.     width                   : 200px;  
  15.     height                  : 200px;  
  16.     background#ffffff;  
  17.     border:1px solid #CCCCCC;  
  18.     display:none;  
  19.     text-aligncenter;  
  20.     overflowhidden;  
  21. }  
  22. div.jqZoomPup {  
  23.     z-index                 : 999;  
  24.     visibility              : hidden;  
  25.     position                : absolute;  
  26.     top:0px;  
  27.     left:0px;  
  28.     width                   : 50px;  
  29.     height                  : 50px;  
  30.     border1px solid #aaa;  
  31.     background#ffffff url(/images/shopping/zoomlens.gif) 50% top  no-repeat;  
  32.     opacity: 0.5;  
  33.     -moz-opacity: 0.5;  
  34.     -khtml-opacity: 0.5;  
  35.     filter: alpha(Opacity=50);  
  36. }  

3、編寫HTML程式碼

 

  1. <div class="jqzoom">  
  2.     <img src="/images/shopping/pro_img/blue_one_small.jpg" style="width:300px; height:300px;" alt=""  jqimg="/images/shopping/pro_img/blue_one_big.jpg" id="bigImg"/>  
  3. </div>  

其中,在HTML程式碼中新增該外掛自定義的jqimg屬性,值為大圖的檔案路徑。

 

4、檢視官方網站的API使用說明,可以寫出如下JS程式碼

[javascript] view plaincopyprint?
  1. /*使用jqzoom*/  
  2. $(function() {  
  3.     $(".jqzoom").jqueryzoom({  
  4.         xzoom: 300, //放大圖的寬度(預設是 200)   
  5.         yzoom: 300, //放大圖的高度(預設是 200)   
  6.         offset: 10, //離原圖的距離(預設是 10)   
  7.         position: "right"//放大圖的定位(預設是 "right")   
  8.         preload: 1  
  9.     });  
  10. });  


附件

附件1:jquery.jqzoom.js

 

[javascript] view plaincopyprint?
  1. //**************************************************************   
  2. // jQZoom allows you to realize a small magnifier window,close   
  3. // to the image or images on your web page easily.   
  4. //   
  5. // jqZoom version 2.2   
  6. // Author Doc. Ing. Renzi Marco(www.mind-projects.it)   
  7. // First Release on Dec 05 2007   
  8. // i'm looking for a job,pick me up!!!   
  9. // mail: renzi.mrc@gmail.com   
  10. //**************************************************************   
  11.   
  12. (function($){  
  13.   
  14.         $.fn.jqueryzoom = function(options){  
  15.   
  16.         var settings = {  
  17.                 xzoom: 200,     //zoomed width default width   
  18.                 yzoom: 200,     //zoomed div default width   
  19.                 offset: 10,     //zoomed div default offset   
  20.                 position: "right" ,//zoomed div default position,offset position is to the right of the image   
  21.                 lens:1, //zooming lens over the image,by default is 1;   
  22.                 preload: 1  
  23.   
  24.             };  
  25.   
  26.             if(options) {  
  27.                 $.extend(settings, options);  
  28.             }  
  29.   
  30.             var noalt='';  
  31.   
  32.             $(this).hover(function(){  
  33.                   
  34.             var imageLeft = $(this).offset().left;                  
  35.             var imageTop = $(this).offset().top;  
  36.   
  37.                  
  38.             var imageWidth = $(this).children('img').get(0).offsetWidth;  
  39.             var imageHeight = $(this).children('img').get(0).offsetHeight;  
  40.   
  41.   
  42.             noalt= $(this).children("img").attr("alt");  
  43.   
  44.             var bigimage = $(this).children("img").attr("jqimg");  
  45.   
  46.             $(this).children("img").attr("alt",'');  
  47.   
  48.             if($("div.zoomdiv").get().length == 0){  
  49.   
  50.             $(this).after("<div class='zoomdiv'><img class='bigimg' src='"+bigimage+"'/></div>");  
  51.   
  52.   
  53.             $(this).append("<div class='jqZoomPup'> </div>");  
  54.   
  55.             }  
  56.   
  57.   
  58.             if(settings.position == "right"){  
  59.   
  60.             if(imageLeft + imageWidth + settings.offset + settings.xzoom > screen.width){  
  61.   
  62.             leftpos = imageLeft  - settings.offset - settings.xzoom;  
  63.   
  64.             }else{  
  65.   
  66.             leftpos = imageLeft + imageWidth + settings.offset;  
  67.             }  
  68.             }else{  
  69.             leftpos = imageLeft - settings.xzoom - settings.offset;  
  70.             if(leftpos < 0){  
  71.   
  72.             leftpos = imageLeft + imageWidth  + settings.offset;  
  73.   
  74.             }  
  75.   
  76.             }  
  77.   
  78.             $("div.zoomdiv").css({ top: imageTop,left: leftpos });  
  79.   
  80.             $("div.zoomdiv").width(settings.xzoom);  
  81.   
  82.             $("div.zoomdiv").height(settings.yzoom);  
  83.   
  84.             $("div.zoomdiv").show();  
  85.   
  86.             if(!settings.lens){  
  87.               $(this).css('cursor','crosshair');  
  88.             }  
  89.   
  90.   
  91.   
  92.   
  93.                    $(document.body).mousemove(function(e){  
  94.   
  95.   
  96.   
  97.                    mouse = new MouseEvent(e);  
  98.   
  99.                    /*$("div.jqZoomPup").hide();*/  
  100.   
  101.   
  102.                     var bigwidth = $(".bigimg").get(0).offsetWidth;  
  103.   
  104.                     var bigheight = $(".bigimg").get(0).offsetHeight;  
  105.   
  106.                     var scaley ='x';  
  107.   
  108.                     var scalex= 'y';  
  109.   
  110.   
  111.                     if(isNaN(scalex)|isNaN(scaley)){  
  112.   
  113.                     var scalex = (bigwidth/imageWidth);  
  114.   
  115.                     var scaley = (bigheight/imageHeight);  
  116.   
  117.   
  118.   
  119.   
  120.                     $("div.jqZoomPup").width((settings.xzoom)/scalex );  
  121.   
  122.                     $("div.jqZoomPup").height((settings.yzoom)/scaley);  
  123.   
  124.                     if(settings.lens){  
  125.                     $("div.jqZoomPup").css('visibility','visible');  
  126.                     }  
  127.   
  128.                    }  
  129.   
  130.                       
  131.   
  132.                     xpos = mouse.x - $("div.jqZoomPup").width()/2 - imageLeft;  
  133.   
  134.                     ypos = mouse.y - $("div.jqZoomPup").height()/2 - imageTop ;  
  135.   
  136.                     if(settings.lens){  
  137.   
  138.                     xpos = (mouse.x - $("div.jqZoomPup").width()/2 < imageLeft ) ? 0 : (mouse.x + $("div.jqZoomPup").width()/2 > imageWidth + imageLeft ) ?  (imageWidth -$("div.jqZoomPup").width() -2)  : xpos;  
  139.   
  140.                     ypos = (mouse.y - $("div.jqZoomPup").height()/2 < imageTop ) ? 0 : (mouse.y + $("div.jqZoomPup").height()/2  > imageHeight + imageTop ) ?  (imageHeight - $("div.jqZoomPup").height() -2 ) : ypos;  
  141.   
  142.                     }  
  143.   
  144.   
  145.                     if(settings.lens){  
  146.   
  147.                     $("div.jqZoomPup").css({ top: ypos,left: xpos });  
  148.   
  149.                     }  
  150.   
  151.   
  152.   
  153.                     scrolly = ypos;  
  154.   
  155.                     $("div.zoomdiv").get(0).scrollTop = scrolly * scaley;  
  156.   
  157.                     scrollx = xpos;  
  158.   
  159.                     $("div.zoomdiv").get(0).scrollLeft = (scrollx) * scalex ;  
  160.   
  161.   
  162.                     });  
  163.             },function(){  
  164.   
  165.                $(this).children("img").attr("alt",noalt);  
  166.                $(document.body).unbind("mousemove");  
  167.                if(settings.lens){  
  168.                $("div.jqZoomPup").remove();  
  169.                }  
  170.                $("div.zoomdiv").remove();  
  171.   
  172.             });  
  173.   
  174.         count = 0;  
  175.   
  176.         if(settings.preload){  
  177.   
  178.         $('body').append("<div style='display:none;' class='jqPreload"+count+"'>sdsdssdsd</div>");  
  179.   
  180.         $(this).each(function(){  
  181.   
  182.         var imagetopreload= $(this).children("img").attr("jqimg");  
  183.   
  184.         var content = jQuery('div.jqPreload'+count+'').html();  
  185.   
  186.         jQuery('div.jqPreload'+count+'').html(content+'<img src=\"'+imagetopreload+'\">');  
  187.   
  188.         });  
  189.   
  190.         }  
  191.   
  192.         }  
  193.   
  194. })(jQuery);  
  195.   
  196. function MouseEvent(e) {  
  197.       this.x = e.pageX;  
  198.       this.y = e.pageY;  
  199. }  

附件2:放大鏡圖示(zoomlens.gif)

 




相關文章