Internet Explorer是否支持CSS转换?

时间:2011-02-24 10:20:29

标签: css internet-explorer css-transitions

CSS transitions是动画CSS属性更改的非常简洁的方法。任何版本的Internet Explorer都支持它们吗?

3 个答案:

答案 0 :(得分:181)

您链接的页面有compatibility table

Chrome
    1.0 (-webkit prefix)

Firefox
    4.0 (2.0) (-moz prefix)
    16.0 (16.0) (no prefix)

Internet Explorer
    10.0 (no prefix)

Opera
    10.5 (-o prefix)  
    12.0 (no prefix)

Safari
    3.2 (-webkit prefix)

还有一篇关于MSDN about CSS3 transitions in Internet Explorer的文章。

答案 1 :(得分:2)

IE8中的CSS转换和转换没有本机支持。

也许你需要使用一些可用的JavaScript库来产生这样的效果:

  • www.useragentman.com/blog/2010/03/09/cross-browser-css-transforms-even-in-ie/#more-896
  • www.jqueryui.com/effect /

权衡:CSS转换利用浏览器(GPU)的原生图形加速,因此比使用JavaScript效果更流畅。

答案 2 :(得分:2)

我建议使用http://caniuse.com/来检查html / css功能的支持和兼容性,因为它会显示市场份额中大多数浏览器的数据。

以下是转换的链接:http://caniuse.com/#search=transitions

对于旧版本的IE,您可以在丰富的www

上找到各种polyfill