我需要帮助以使我的代码适用于 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中工作?