html 图片自适应大小_图片自适应大小

更新时间:2015-04-28    来源:excel    手机版     字体:

【www.bbyears.com--excel】

 代码如下





<script type="text/javascript">
var flag=false;
function DrawImage(ImgD,imageWidth,imageHeight) {
   var image=new Image();
   image.src=ImgD.src;
   if(image.width>0 && image.height>0){
    flag=true;
    if(image.width/image.height>= imageWidth/imageHeight){
     if(image.width>imageWidth){
     ImgD.width=imageWidth;
     ImgD.height=(image.height*imageWidth)/image.width;
     }else{
     ImgD.width=image.width;
     ImgD.height=image.height;
     }
     }
    else{
     if(image.height>imageHeight){
     ImgD.height=imageHeight;
     ImgD.width=(image.width*imageHeight)/image.height;
     }else{
     ImgD.width=image.width;
     ImgD.height=image.height;
     }
     }
    }
  }
 
</script>
Anddecor


/*定义图片宽不超过150,高不超过130*/

本文来源:http://www.bbyears.com/bangongshuma/14694.html

猜你感兴趣

热门标签

更多>>

本类排行