62,252
社区成员
发帖
与我相关
我的任务
分享
//JS按比例缩放图片
function SetSize(img, width, height)
{
var vWidth=img.width;
var vHeight=img.height;
img.width=0;
img.height=0;
if(vWidth>vHeight){
img.width=width;
img.height=vHeight/vWidth*width;
img.style.marginTop=(height-img.height)/2;
}else if(vWidth<vHeight){
img.height=height;
img.width=vWidth/vHeight*height;
img.style.marginTop=0;
}else{
img.width=width;
img.height=height;
img.style.marginTop=0;
}
}
<img src='http://Img.hengzhe.com/sj/test.jpg' onload='SetSize(this, 100, 100)' border=0 />
