图片等比例缩放

/*
  *图片缩放
  */
  var showImg = function(img,maxWidth,maxHeight){
  var rate=(maxHeight/img.height>maxWidth/img.width?maxWidth/img.maxHeight/img.height);
    if(rate<1){
     img.width=img.width*rate;
     img.height=img.height*rate;
    }
     return img;
  };   
 
         function images_WH(){
   
    var imgs =new Image();
            /**
         **图片超出等比例缩放
         **/
       var imagID=document.getElementById("imgID");
       imgs.onload = function(){
         var FitWidth=894,FitHeight=435;
         showImg(this, FitWidth, FitHeight);
        imagID.width = imgs.width;
        imagID.height = imgs.height;
        imagID.style.display='';
       };
       imgs.src=imagID.src;
   
    }    

原文地址:https://www.cnblogs.com/dearxinli/p/2834285.html