萬盛學電腦網

 萬盛學電腦網 >> 網頁制作 >> 交互設計 >> 一個基於jQuery的圖片翻轉效果

一個基於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代碼:

  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(an
copyright © 萬盛學電腦網 all rights reserved