一个基于jQuery的图片翻转效果

据说,这是一个最近很流行的效果,新浪微博,腾讯微博,都用到了这种效果,本博开博时也追随潮流用上了这种效果,今天又在经典论坛中看到了这个效果.
使用方法:
在你的大图链接中加入class=”miniImg artZoom”例:

<a class="miniImg artZoom" href="http://www.amostoys.com/images/460/graphics/hey.jpg"><img title="Mr.Think" src="http://www.amostoys.com/images/460/graphics/hey.jpg" alt="Zoom" /></a>

核心jQuery代码: 点此查看DEMO

  1. //原作者:唐斌www.planeart.cn/,由Mr.Think整理分享.感谢唐斌同学:)
  2. $(function(){
  3.     var imgID = 0;
  4.     $('a.artZoom').click(function(){
  5.         var id = $(this).attr('rel');
  6.         if(id == ''){
  7.             id = imgID += 1;
  8.             $(this).attr('id','artZoomLink-' +id);
  9.             $(this).attr('rel',id)
  10.         };
  11.         var url = $(this).attr('href');
  12.         $(this).append('<div class="loading" title="loading.."></div>');//loading
  13.         function getImageSize(url,fn){
  14.             var img = new Image();
  15.             img.src = url;
  16.             if (img.complete){
  17.                 fn.call(img);
  18.             }else{
  19.                 img.onload = function(){
  20.                     fn.call(img);
  21.                 };
  22.             };
  23.         };
  24.         getImageSize(url,function(){
  25.             $('#artZoomLink-' +id+ ' .loading').remove();
  26.             $('#artZoomLink-' +id).hide();
  27.             if (id != '' && $('#artZoomBox-' +id).length == 0){
  28.                 var html = '';
  29.                 html += '<div class="artZoomBox" id="artZoomBox-' +id+ '" style="display:none">';
  30.                 html += '    <div class="tool"><a class="hideImg" href="#" rel="' +id+ '">收起</a><a class="imgLeft" href="#" rel="' +id+ '">向左转</a><a class="imgRight" href="#" rel="' +id+ '">向右转</a><a class="viewImg" href="#" rel="' +id+ '">新窗口打开</a></div>';
  31.                 html += '    <a href="' +url+ '" class="maxImgLink" id="maxImgLink-' +id+ '" rel="' +id+ '"> <img class="maxImg" width="' +this.width+ '" height="' +this.height+ '" id="maxImg-' +id+ '" src="' +url+ '" /> </a>';
  32.                 html += '</div>';
  33.                 $('#artZoomLink-' +id).after(html);
  34.             };
  35.             $('#artZoomBox-' +id).show('fast');
  36.         });
  37.         return false;
  38.     });
  39.     //让IE8在图片旋转后高度能被包含
  40.     function IE8height(id){
  41.         var w = $('#maxImg-' +id).outerWidth();
  42.         var h =  $('#maxImg-' +id).outerHeight();
  43.         $('#artZoomBox-' +id+ ' a.maxImgLink').css('height','');
  44.         if ($.browser.version == '8.0' && w > h) {
  45.             var maxHeight = Math.max(w, h);
  46.             $('#artZoomBox-' +id+ ' a.maxImgLink').css('height',maxHeight+ 'px');
  47.         };
  48.     };
  49.     $('.artZoomBox a').live('click', function(){
  50.         var id = $(this).attr('rel');       
  51.         //收起
  52.         if($(this).attr('class') == 'hideImg' || $(this).attr('class') == 'maxImgLink') {
  53.             $('#artZoomBox-' +id).hide('fast',function(){
  54.                 $('#artZoomLink-' +id).show();
  55.             });
  56.         };
  57.         //左旋转
  58.         if($(this).attr('class') == 'imgLeft') {
  59.             IE8height(id);
  60.             $('#maxImg-' +id).rotateLeft(90);
  61.         };
  62.         //右旋转
  63.         if($(this).attr('class') == 'imgRight') {
  64.             IE8height(id);
  65.             $('#maxImg-' +id).rotateRight(90);
  66.         };
  67.         //新窗口打开
  68.         if($(this).attr('class') == 'viewImg') window.open($('#maxImgLink-' +id).attr('href'));   
  69.         return false;
  70.     });
  71. });
  72. jQuery.fn.rotate = function(angle,whence) {
  73.     var p = this.get(0);
  74.     // we store the angle inside the image tag for persistence
  75.     if (!whence) {
  76.         p.angle = ((p.angle==undefined?0:p.angle) + angle) % 360;
  77.     } else {
  78.         p.angle = angle;
  79.     }
  80.     if (p.angle >= 0) {
  81.         var rotation = Math.PI * p.angle / 180;
  82.     } else {
  83.         var rotation = Math.PI * (360+p.angle) / 180;
  84.     }
  85.     var costheta = Math.cos(rotation);
  86.     var sintheta = Math.sin(rotation);
  87.  
  88.     if (document.all && !window.opera) {
  89.         var canvas = document.createElement('img');       
  90.         canvas.src = p.src;
  91.         canvas.height = p.height;
  92.         canvas.width = p.width;
  93.         canvas.style.filter = "progid:DXImageTransform.Microsoft.Matrix(M11="+costheta+",M12="+(-sintheta)+",M21="+sintheta+",M22="+costheta+",SizingMethod='auto expand')";
  94.     } else {
  95.         var canvas = document.createElement('canvas');
  96.         if (!p.oImage) {
  97.             canvas.oImage = new Image();
  98.             canvas.oImage.src = p.src;
  99.         } else {
  100.             canvas.oImage = p.oImage;
  101.         }
  102.         canvas.style.width = canvas.width = Math.abs(costheta*canvas.oImage.width) + Math.abs(sintheta*canvas.oImage.height);
  103.         canvas.style.height = canvas.height = Math.abs(costheta*canvas.oImage.height) + Math.abs(sintheta*canvas.oImage.width);
  104.         var context = canvas.getContext('2d');
  105.         context.save();
  106.         if (rotation <= Math.PI/2) {
  107.             context.translate(sintheta*canvas.oImage.height,0);
  108.         } else if (rotation <= Math.PI) {
  109.             context.translate(canvas.width,-costheta*canvas.oImage.height);
  110.         } else if (rotation <= 1.5*Math.PI) {
  111.             context.translate(-costheta*canvas.oImage.width,canvas.height);
  112.         } else {
  113.             context.translate(0,-sintheta*canvas.oImage.width);
  114.         }
  115.         context.rotate(rotation);
  116.         context.drawImage(canvas.oImage, 0, 0, canvas.oImage.width, canvas.oImage.height);
  117.         context.restore();
  118.     }
  119.     canvas.id = p.id;
  120.     canvas.className = 'maxImg';//定义图片旋转后的className
  121.     canvas.angle = p.angle;
  122.     p.parentNode.replaceChild(canvas, p);
  123. }
  124. jQuery.fn.rotateRight = function(angle) {
  125.     this.rotate(angle==undefined?90:angle);
  126. }
  127. jQuery.fn.rotateLeft = function(angle) {
  128.     this.rotate(angle==undefined?-90:-angle);
  129. }

声明一下,本文实例及代码原作者为唐斌同学(他的博客很棒哦~),原文地址:http://www.planeart.cn/?p=696,感谢唐斌同学:).

 

原文发布于Mr.Think的个人博客: http://mrthink.net/javascript-jquery-zoom-turnimg/  转载请注明

posted @ 2010-07-08 10:02  Mr.Think  阅读(7370)  评论(3编辑  收藏  举报