按比例缩放图片大小代码实例

按比例缩放图片大小代码实例:
如果图片的尺寸超出了要求的大小,可能导致网页变形等情况,如果固定尺寸的话,那么就有可能导致图片变形,那么网站也不会达到美观的效果,下面是一段可能是图片等比例缩放的代码实例供大家参考一下,代码来源于网络:
代码实例如下:

<script type="text/javascript"> 
jQuery.fn.LoadImage=function(scaling,width,height,loadpic)
{ 
  if(loadpic==null)loadpic="../img/loading.gif"; 
  return this.each(function(){ 
    var t=$(this); 
    var src=$(this).attr("src") 
    var img=new Image(); 
    img.src=src; 
    //自动缩放图片 
    var autoScaling=function()
    { 
      if(scaling)
      { 
        if(img.width>0 && img.height>0)
        { 
          if(img.width/img.height>=width/height)
          { 
            if(img.width>width)
            { 
              t.width(width); 
              t.height((img.height*width)/img.width); 
            }
           else
           { 
              t.width(img.width); 
              t.height(img.height); 
            } 
          } 
          else
          { 
            if(img.height>height)
            { 
              t.height(height); 
              t.width((img.width*height)/img.height); 
            }
            else
            { 
              t.width(img.width); 
              t.height(img.height); 
            } 
          } 
        } 
      } 
    } 
    if(img.complete)
    { 
      autoScaling(); 
      return; 
    } 
    $(this).attr("src",""); 
    var loading=$("<img alt=\"加载中...\" title=\"图片加载中...\" src=\""+loadpic+"\" />"); 
    t.hide(); 
    t.after(loading); 
    $(img).load(function(){ 
      autoScaling(); 
      loading.remove(); 
      t.attr("src",this.src); 
      t.show(); 
    }); 
  })
} 
$(window).load(function(){ 
  $('#content img').LoadImage(true, 600,500,'img/loading.gif'); 
}); 
</script> 
</head>
<body>
<div id="content"><img src="img/1.jpg"/></div> 
</body>
</html>

 原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=8385

更多内容可以参阅:http://www.softwhy.com/jquery/

猜你喜欢

转载自softwhy.iteye.com/blog/2266724