object.Style.Zoom属性在Firefox中不起作用

时间:2011-08-24 12:55:00

标签: javascript html firefox

我使用object.Style.Zoom在div标签内进行缩放,它在IE中工作。我需要firefox。请指导我。我可以获得style.zoom的任何替代品。

2 个答案:

答案 0 :(得分:5)

Firefox中未实现

zoom

来自CSS3的“{替换”为transformhttps://developer.mozilla.org/En/transform

Firefox的JavaScript示例:

document.getElementById('x').style.MozTransform = "scale(2)";
document.getElementById('x').style.MozTransformOrigin = "0 0";

值得指出的是CSS3转换是supported in all modern browsers。您应该只使用zoom作为IE8及更低版本的后备。

答案 1 :(得分:1)

document.getElementById("myMainBody").style.transform = "scale(0.8)";
document.getElementById("myMainBody").style.transformOrigin = "0 0";

Given script shows unwanted "OPTIONS" panel in Firefox/Chrome browser

以上脚本在Firefox / Chrome浏览器中带来了不必要的“ OPTIONS”面板。我也使用Chrome进行了测试,它也出现在了chrome上(但是我们在chrome中有一个替代版本,即style.zoom)。有什么方法可以摆脱Firefox中的“ OPTIONS”面板,当我们使用上述脚本时会显示该面板吗?