我正在尝试从旋转动画中获取当前度数。可悲的是 Firefox 告诉我以下内容:
NotSupportedError: Operation is not supported
[Break On This Error]
var style = window.getComputedStyle(el);
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。
你能帮帮我吗?