js控制图片成比例

来源:互联网 发布:易语言简单播放器源码 编辑:程序博客网 时间:2024/05/29 04:47
<!--
var flag=false;
function DrawImage(ImgD){
var image=new Image();
image.src=ImgD.src;
if(image.width>0 && image.height>0){
flag=true;
if(image.width/image.height>= 1){
if(image.width>130){
ImgD.width=130;
ImgD.height=(image.height*130)/image.width;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
}
else{
if(image.height>130){
ImgD.height=130;
ImgD.width=(image.width*130)/image.height;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
}
}
}
//--> 
原创粉丝点击