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

代码实例如下:
   [ jQuery ] 运行代码    下载代码
<script>
<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>
</script>

代码描述:jQuery按比例 缩放图片大小。jQuery按比例缩放图片大小简单介绍



107 143



用户评论
大牛,别默默的看了,快登录帮我点评一下吧!:)      登录 | 注册



×
×
51前端

注册

×
绑定手机

请绑定手机号,在继续操作

×
单次下载支付

应付金额:279

支付完成后,回到下载页面,在进行下载

官方QQ群
意见反馈
qq群

扫描上面二维码加微信群

官方QQ群

jQuery/js讨论群
群号:642649996
Css3+Html5讨论群
群号:322131262

加群请备注:从官网了解到