我有一些javascript只是在IE中无效。
function resize($img) {
var max_size_w = 200;
var max_size_h = 200;
var h = $img.height();
var w = $img.width();
if (h > max_size_h) {
h = max_size_h;
w = Math.ceil($img.width() / $img.height() * max_size_h);
}
if (w > max_size_w) {
h = Math.ceil($img.height() / $img.width() * max_size_w);
w = max_size_w;
}
$img.css({ height: h, width: w });
}
$(window).load(function() {
// Size the images correctly
$(".personPictureImage").each(function() {
var $img = $(this).find("img");
$img.load(function() { resize($(this)); });
if($img.height())
resize($img);
});
});
在所有其他浏览器中,它会调整图像大小以适合200x200的框。在IE中,我的大小为30px乘以= 28px。在chrome中我得到200px乘以142px。
我知道IE有问题,而且通常是一个可怕的浏览器,但无论如何我都试图支持它。如何修复我的代码才能在IE中工作?
答案 0 :(得分:0)
尝试替换
var max_size_w = 200;
var max_size_h = 200;
var h = $img.height();
var w = $img.width();
if (h > max_size_h) {
h = max_size_h;
w = Math.ceil($img.width() / $img.height() * max_size_h);
}
if (w > max_size_w) {
h = Math.ceil($img.height() / $img.width() * max_size_w);
w = max_size_w;
}
用这个计算
var MAX=200,wi=$img.width(),he=$img.height(),
r=MAX/Math.max(wi,he),
w=Math.round(wi*r),
h=Math.round(he*r);
...
var MAX=200,
r=MAX/Math.max(this.width,this.height),
w=Math.round(this.width*r),
h=Math.round(this.height*r);
取自此处。
https://stackoverflow.com/a/17502568/2450730
ps。:r是RATIO&我也会使用纯JavaScript,因为所有浏览器都支持你所做的一切。