您的位置:首页 > Web前端 > JavaScript

js实现兼容IE、Firefox的图片缩放代码

2015-12-08 12:20 861 查看
function SetSize(obj, width, height) {
myImage = new Image();
myImage.src = obj.src;
if (myImage.width > 0 && myImage.height > 0) {
var rate = 1;
if (myImage.width > width || myImage.height > height) {
if (width / myImage.width < height / myImage.height) {
rate = width / myImage.width;
} else {
rate = height / myImage.height;
}
}
if (window.navigator.appName == "Microsoft Internet Explorer") {
obj.style.zoom = rate;
} else {
obj.width = myImage.width * rate;
obj.height = myImage.height * rate;
}
}
}

用法:

复制代码 代码如下: <img src="img/offer/41936519.jpg" border="0" style="zoom: 0.1" onload="SetSize(this, 80, 60)"/>
这种方法在IE、FIREFOX、OPERA、NETSCAPE测试都适用。

希望本文所述对大家JavaScript程序设计有所帮助。

您可能感兴趣的文章:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  js 图片缩放