自分のコードを 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で動作させる方法はありますか?