码迷,mamicode.com
首页 > 编程语言 > 详细

javascript控制图片等比例缩放

时间:2014-09-10 17:34:40      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   java   ar   div   cti   sp   

<SCRIPT language="JavaScript">
function DrawImage(ImgD,FitWidth,FitHeight){  
    var image=new Image();  
    image.src=ImgD.src;  
    if(image.width>0 && image.height>0){  
        if(image.width/image.height>= FitWidth/FitHeight){  
            if(image.width>FitWidth){  
                ImgD.width=FitWidth;  
                ImgD.height=(image.height*FitWidth)/image.width;  
            }  
            else{  
                ImgD.width=image.width;  
                ImgD.height=image.height;  
            }  
        }  
        else{  
            if(image.height>FitHeight){  
                ImgD.height=FitHeight;  
                ImgD.width=(image.width*FitHeight)/image.height;  
            }  
            else{  
                ImgD.width=image.width;  
                ImgD.height=image.height;  
            }  
        }  
    }  
}  

</script>

 

javascript控制图片等比例缩放

标签:style   blog   color   io   java   ar   div   cti   sp   

原文地址:http://www.cnblogs.com/xinlinux/p/3964725.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!