js同比例缩放图片的小例子
时间:2021-04-27 09:09:12|栏目: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;
}
}
}
}
栏 目:JavaScript代码
下一篇:document.styleSheets[0].disabled
本文标题:js同比例缩放图片的小例子
本文地址:http://www.codeinn.net/misctech/109866.html






