我正在尝试从旋转动画获得当前的学位。
不幸的是,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。

你能帮帮我吗?

最佳答案

Rob W reminded me检查Element是否为“ null”,是否为null。

易于修复:我使用了jQuery提供的$(document).ready()函数来推迟执行。
很好。

关于javascript - getComputedStyle“不支持操作”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11482360/

10-12 03:42