IE中的CSS3转换



我需要帮助使我的代码适用于IE8和9。

这就是我的,

$("#logo").delay(1000).animate({
    "margin-top": "-=180px"
}, {
    step: function (now, fx) {
        angle += 2;
        $(this).css({
            "-moz-transform": "rotate(" + angle + "deg)",
            "-webkit-transform": "rotate(" + angle + "deg)",
            "-ms-transform": "rotate(" + angle + "deg)",
            "-o-transform": "rotate(" + angle + "deg)"
        });
    },
    duration: 610
},
"linear");

但它只适用于FF和Chrome。有什么办法让它在IE中工作吗?

我使用插件解决了这个问题:http://code.google.com/p/jqueryrotate/,

曾在IE7,8和9以及Chrome和FF 中为我工作

相关内容

  • 没有找到相关文章

最新更新