`
shen211
  • 浏览: 46592 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

缩放图片JS

 
阅读更多
/**
*
*img 为<img/>对象
*/
function drawImg(img,boxWidth, boxHeight) {
var imgWidth = img.width;
var imgHeight = img.height;
if ((boxWidth / boxHeight) >= (imgWidth / imgHeight)) {
img.width = ((boxHeight * imgWidth) / imgHeight);
img.height = (boxHeight);
} else {
img.width = (boxWidth);
img.height = ((boxWidth * imgHeight) / imgWidth);
}
}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics