`

电子商务图片放大jqzoom

阅读更多

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>  
<script src="/js/common/jquery-1.6.2.js" type="text/javascript"></script>
<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. }  
/*jQzoom*/
.jqzoom{
    border:1px solid #BBB;
    float:left;
    position:relative;
    padding:0px;
    cursor:pointer;
}
div.zoomdiv {
	z-index:	999;
	position                : absolute;
	top:0px;
	left:0px;
	width                   : 200px;
	height                  : 200px;
	background: #ffffff;
	border:1px solid #CCCCCC;
	display:none;
	text-align: center;
	overflow: hidden;
}
div.jqZoomPup {
	z-index                 : 999;
	visibility              : hidden;
	position                : absolute;
	top:0px;
	left:0px;
	width                   : 50px;
	height                  : 50px;
	border: 1px solid #aaa;
	background: #ffffff url(/images/shopping/zoomlens.gif) 50% top  no-repeat;
	opacity: 0.5;
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	filter: alpha(Opacity=50);
}

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>  
<div class="jqzoom">
    <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"/>
</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. });  
/*使用jqzoom*/
$(function() {
    $(".jqzoom").jqueryzoom({
        xzoom: 300, //放大图的宽度(默认是 200)
        yzoom: 300, //放大图的高度(默认是 200)
        offset: 10, //离原图的距离(默认是 10)
        position: "right", //放大图的定位(默认是 "right")
        preload: 1
    });
});

 

* 附件

附件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. }  
//**************************************************************
// jQZoom allows you to realize a small magnifier window,close
// to the image or images on your web page easily.
//
// jqZoom version 2.2
// Author Doc. Ing. Renzi Marco(www.mind-projects.it)
// First Release on Dec 05 2007
// i'm looking for a job,pick me up!!!
// mail: renzi.mrc@gmail.com
//**************************************************************

(function($){

		$.fn.jqueryzoom = function(options){

		var settings = {
				xzoom: 200,		//zoomed width default width
				yzoom: 200,		//zoomed div default width
				offset: 10,		//zoomed div default offset
				position: "right" ,//zoomed div default position,offset position is to the right of the image
				lens:1, //zooming lens over the image,by default is 1;
				preload: 1

			};

			if(options) {
				$.extend(settings, options);
			}

		    var noalt='';

		    $(this).hover(function(){
                
		    var imageLeft = $(this).offset().left;                
		    var imageTop = $(this).offset().top;

               
		    var imageWidth = $(this).children('img').get(0).offsetWidth;
		    var imageHeight = $(this).children('img').get(0).offsetHeight;


            noalt= $(this).children("img").attr("alt");

		    var bigimage = $(this).children("img").attr("jqimg");

            $(this).children("img").attr("alt",'');

		    if($("div.zoomdiv").get().length == 0){

		    $(this).after("<div class='zoomdiv'><img class='bigimg' src='"+bigimage+"'/></div>");


		    $(this).append("<div class='jqZoomPup'> </div>");

		    }


		    if(settings.position == "right"){

            if(imageLeft + imageWidth + settings.offset + settings.xzoom > screen.width){

            leftpos = imageLeft  - settings.offset - settings.xzoom;

            }else{

		    leftpos = imageLeft + imageWidth + settings.offset;
            }
		    }else{
		    leftpos = imageLeft - settings.xzoom - settings.offset;
		    if(leftpos < 0){

            leftpos = imageLeft + imageWidth  + settings.offset;

		    }

		    }

		    $("div.zoomdiv").css({ top: imageTop,left: leftpos });

		    $("div.zoomdiv").width(settings.xzoom);

		    $("div.zoomdiv").height(settings.yzoom);

            $("div.zoomdiv").show();

            if(!settings.lens){
              $(this).css('cursor','crosshair');
			}




				   $(document.body).mousemove(function(e){



                   mouse = new MouseEvent(e);

                   /*$("div.jqZoomPup").hide();*/


				    var bigwidth = $(".bigimg").get(0).offsetWidth;

				    var bigheight = $(".bigimg").get(0).offsetHeight;

				    var scaley ='x';

				    var scalex= 'y';


				    if(isNaN(scalex)|isNaN(scaley)){

				    var scalex = (bigwidth/imageWidth);

				    var scaley = (bigheight/imageHeight);




				    $("div.jqZoomPup").width((settings.xzoom)/scalex );

		    		$("div.jqZoomPup").height((settings.yzoom)/scaley);

                    if(settings.lens){
                    $("div.jqZoomPup").css('visibility','visible');
					}

				   }

                    

                    xpos = mouse.x - $("div.jqZoomPup").width()/2 - imageLeft;

                    ypos = mouse.y - $("div.jqZoomPup").height()/2 - imageTop ;

                    if(settings.lens){

                    xpos = (mouse.x - $("div.jqZoomPup").width()/2 < imageLeft ) ? 0 : (mouse.x + $("div.jqZoomPup").width()/2 > imageWidth + imageLeft ) ?  (imageWidth -$("div.jqZoomPup").width() -2)  : xpos;

					ypos = (mouse.y - $("div.jqZoomPup").height()/2 < imageTop ) ? 0 : (mouse.y + $("div.jqZoomPup").height()/2  > imageHeight + imageTop ) ?  (imageHeight - $("div.jqZoomPup").height() -2 ) : ypos;

                    }


                    if(settings.lens){

                    $("div.jqZoomPup").css({ top: ypos,left: xpos });

                    }



					scrolly = ypos;

					$("div.zoomdiv").get(0).scrollTop = scrolly * scaley;

					scrollx = xpos;

					$("div.zoomdiv").get(0).scrollLeft = (scrollx) * scalex ;


				    });
		    },function(){

               $(this).children("img").attr("alt",noalt);
		       $(document.body).unbind("mousemove");
		       if(settings.lens){
		       $("div.jqZoomPup").remove();
		       }
		       $("div.zoomdiv").remove();

		    });

        count = 0;

		if(settings.preload){

		$('body').append("<div style='display:none;' class='jqPreload"+count+"'>sdsdssdsd</div>");

		$(this).each(function(){

        var imagetopreload= $(this).children("img").attr("jqimg");

        var content = jQuery('div.jqPreload'+count+'').html();

        jQuery('div.jqPreload'+count+'').html(content+'<img src=\"'+imagetopreload+'\">');

		});

		}

		}

})(jQuery);

function MouseEvent(e) {
      this.x = e.pageX;
      this.y = e.pageY;
}

附件2:放大镜图标(zoomlens.gif)

 


分享到:
评论

相关推荐

    jqzoom 2.3 图片放大器

    `jqzoom` 是一款基于 jQuery 的插件,主要用于实现网页上的图片放大效果,尤其适用于电子商务网站的产品展示。这个2.3版本是其一个更新迭代,旨在提供更加流畅、用户体验更好的图片放大功能。 在电商网站中,商品...

    jqzoom图片放大插件

    **jqZoom图片放大插件详解** 在网页设计中,为用户提供清晰、直观的产品细节视图是至关重要的,尤其是在电子商务网站上。jqZoom是一款强大的JavaScript插件,它实现了点击图片后出现放大镜效果,使得用户可以查看...

    图片放大镜插件:jqzoom

    **jqZoom图片放大镜插件详解** 在网页设计中,为用户提供清晰的细节视图是提升用户体验的关键之一,jqZoom是一款流行的JavaScript插件,用于实现图片的放大镜效果。这款插件通过简单易用的API和灵活的配置选项,...

    zencart 图片放大插件集成版 JQLightBox+JQZoom

    在电子商务网站中,用户体验往往对销售转化率有着显著影响,其中产品图片的展示方式尤为重要。Zencart 是一款流行的开源电子商务平台,它为商家提供了一个功能丰富的系统来管理在线商店。"zencart 图片放大插件集成...

    jcarousel+jqzoom 实现图片滚动和局部图片放大镜效果

    结合使用 jcarousel 和 jqzoom,电子商务网站可以创建一个强大的商品展示模块,用户可以通过轻松滚动浏览多个商品图片,同时在感兴趣的地方通过放大镜查看更清晰的细节。这不仅提升了用户体验,也有助于提高商品的...

    放大镜jqzoom_ev-2.3

    jqzoom_ev-2.3是一款基于JavaScript库jQuery开发的高效图片放大镜插件,它为用户提供了一种直观且互动的方式来查看产品的细节,尤其适用于电子商务网站的产品展示。 首先,我们来理解一下什么是jQuery。jQuery是一...

    [javascript图片放大]jqzoom_v2.2

    JavaScript 图片放大插件 jqZoom_v2.2 是一个针对网页图像查看的高效解决方案,尤其适合电子商务网站或产品展示页面。这款插件基于 jQuery 库,它为用户提供了一个平滑、交互式的放大体验,使他们能更清晰地查看图像...

    jquery jqzoom京东商城商品详细页面图片放大镜

    在电子商务网站中,商品展示的质量往往直接影响到用户的购买决策。为了提供更优质的购物体验,京东商城在其商品详细页面上采用了一项名为jQuery jqZoom的技术,实现了图片放大镜功能。这项技术使用户能够放大查看...

    图片放大、图片局部放大

    在IT行业中,图片处理是一项非常重要的任务,尤其是在网页设计、电子商务和数字媒体等领域。本话题主要关注“图片放大”和“图片局部放大”的技术实现,特别是使用jQuery插件jqZoom来达成这一目标。jQuery是一个广泛...

    jqzoom实现京东商品详细页产品图片放大镜效果.zip

    在电子商务网站上,商品详情页面的设计至关重要,其中产品图片的展示方式直接影响用户的购物体验。"jqzoom" 是一款流行的 jQuery 插件,用于实现类似京东商品详细页的产品图片放大镜效果,让顾客能够清晰地查看商品...

    jqzoom Demo

    【jqzoom Demo】是一个基于jQuery库的图像放大插件示例,主要应用于电子商务网站的产品展示,使得用户在不离开页面的情况下能够对商品图片进行细致查看。这个插件通过平滑的过渡效果,提供了类似放大镜的功能,提高...

    jquery.jqzoom.js

    本文将深入探讨jQuery中的一个插件——jqZoom,它是一款用于实现图片放大镜效果的工具,尤其适用于电子商务网站的商品展示。通过使用jqZoom,用户可以在不离开页面的情况下,查看商品的细节,提升购物体验。 首先,...

    JQlightBox+JQZoom for Zen Cart

    而JQZoom则是一款用于放大图片局部的插件,它可以在鼠标悬浮在图片上时,显示一个放大的视窗,突出显示商品的关键部位。在Zen Cart中,JQZoom可以应用在商品主图上,当用户鼠标悬停时,无需离开页面即可查看商品的...

    jqzoom鼠标悬停图片放大器代码

    **jQuery jqZoom图片放大器详解** 在Web开发中,为了提升用户体验,经常需要对产品图片进行展示优化,其中一种常见的技术就是图片放大效果。本文将详细介绍`jqzoom`这一jQuery插件,它是一款专用于实现鼠标悬停时...

    正版jQzoom 兼容IE7

    尤其是在电子商务网站中,用户对产品的细节查看需求尤为强烈,jqZoom的出现正好解决了这一问题。 **1. jqZoom基本概念** jqZoom是一种基于JavaScript库jQuery的插件,它通过CSS和JavaScript技术实现了图片的放大...

    多种集合图片放大,多图放大镜,产品放大镜

    在IT行业中,尤其是在网页设计和电子商务领域,"多种集合图片放大,多图放大镜,产品放大镜"是一种常见的用户体验优化技术。它主要用于提高用户在浏览商品时的视觉体验,特别是对于那些需要展示细节的在线商品,如...

    JQLightBox+JQZoom_For_ZenCart_修改版

    ZenCart是一款开源的电子商务解决方案,它为在线商家提供了丰富的功能和灵活的定制性。在这个修改版中,我们重点关注了两个增强用户体验的组件:JQLightBox 和 JQZoom。这两个组件的集成可以提升商品展示效果,使...

    JQUERY图片放大镜插件

    在Web开发中,尤其是电子商务网站,为了提供更好的用户体验,经常需要实现图片预览和放大功能。这时,jQuery图片放大镜插件就显得尤为重要。本文将详细介绍一个名为"jqzoom_ev1.0.1"的jQuery图片放大镜插件,以及...

    jqzoom_ev1.0.1

    jqzoom_ev1.0.1在电子商务网站、产品展示页面、艺术作品展示等场合有广泛应用,能够帮助提升用户体验,使用户更深入地了解产品细节,从而提高转化率。 总结来说,jqzoom_ev1.0.1是一个强大且易用的JavaScript插件,...

    jqzoom_ev_脚本实例_

    这种效果常见于电子商务网站的产品展示页面,以增强用户体验,帮助消费者查看商品细节。jqZoom通过在原始图像旁边创建一个浮动的放大区域来实现这一功能,当鼠标移动到图像上时,放大区域会显示相应位置的放大图像。...

Global site tag (gtag.js) - Google Analytics