图像渲染DOM等价物

时间:2011-03-17 10:04:39

标签: javascript css firefox dom

Firefox中image-rendering CSS属性的DOM等价物是什么?也就是说有没有办法将它放在做element.style.cssText = "image-rendering: -moz-crisp-edges;"之外?

注意:浏览器兼容性不是问题。

1 个答案:

答案 0 :(得分:0)

在firefox 4.0rc1中我可以使用

element.style.imageRendering = "-moz-crisp-edges";
没有问题。

与任何其他css属性一样,只需从hyphen-lowercase切换到camelCase。