回転アニメーションから現在の度数を取得しようとしています。悲しいことに、Firefoxは次のことを教えてくれます:
NotSupportedError: Operation is not supported
[Break On This Error]
var style = window.getComputedStyle(el);
エルは次のとおりです。
document.getElementById('spinner');
#spinner は、アニメーションによって回転する画像です。
@-moz-keyframes spinmerightroundbaby{
0%{ -moz-transform: rotate(0deg); }
100%{ -moz-transform: rotate(360deg);}
}
#spinner{
-moz-animation: spinmerightroundbaby 30s linear 0s infinite;
}
他の JScode は実行されません。
私を助けてくれませんか?