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

前端之家收集整理的这篇文章主要介绍了js实现兼容IE、Firefox的图片缩放代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了js实现兼容IE、Firefox的图片缩放代码分享给大家供大家参考,具体如下:

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; } } }

用法

代码如下:
这种方法在IE、FIREFOX、OPERA、NETSCAPE测试都适用。

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

原文链接:https://www.f2er.com/js/51231.html

猜你在找的JavaScript相关文章