4

Firefox 18.0.1 上的 css @-moz-keyframes 动画不起作用,

我已经在以前的版本上检查过这个动画(忘记了以前的版本号),它正在工作,

这是动画

<html>
    <head>
        <style type="text/css">

            @-webkit-keyframes animation {
                0% { -webkit-transform:translate(100px,100px) scale(1); }
                50% { -webkit-transform:translate(00px,00px)  scale(2); }
                100% { -webkit-transform:translate(100px,100px)  scale(1); }
            }

            @-moz-keyframes animation_m {
                0% { -moz-transform:translate(100px,100px)  scale(1); }
                50% { -moz-transform: translate(00px,00px) scale(2); }
                100% { -moz-transform:translate(100px,100px)  scale(1); }
            }

            .cc1{
                -webkit-animation-name: "animation";
                -webkit-animation-duration: 2s;
                -webkit-animation-timing-function: linear;

                -moz-animation-name: "animation_m";
                -moz-animation-duration: 2s;
                -moz-animation-timing-function: linear;
            }

            #id1,#ci1{
                position:absolute;
                top:0px;
                left:0px;
            }

        </style>
        <script type="text/javascript">
            window.onload=function(){
                var e=document.getElementById("ci1");
                var ctx=e.getContext("2d");
                ctx.fillStyle="#f00";
                ctx.fillRect(0,0,90,90);
            }
        </script>
    <body>
        <div id="id1" class="cc1">
            <canvas width="100" height="100" id="ci1" ></canvas>
        </div>
    </body>
</html>

是 Firefox 的错误吗?

4

2 回答 2

12

Firefox 18(以及 Opera、IE10 以及不久的将来的许多其他版本)需要没有供应商前缀的 W3C 属性。确保添加以下块:

@keyframes animation_m {
    0% { transform:translate(100px,100px)  scale(1); }
    50% { transform: translate(00px,00px) scale(2); }
    100% { transform:translate(100px,100px)  scale(1); }
}

.cc1 {
    animation-name: animation_m;
    animation-duration: 2s;
    timing-function: linear;
}

请注意,-moz-transform属性也更改为transform

您应该始终为所有带前缀的 CSS 属性包含无供应商前缀版本。我还建议为您的 CSS 样式和动画名称提供更具描述性的名称。

于 2013-02-05T17:24:28.413 回答
6

问题出在这一行

-moz-animation-name: "animation_m";

谷歌浏览器中,如果你用双引号(“”)写你的动画名称,它会作为标识符,但在Firefox中它被认为是一个字符串,而不是标识符,所以提到不带双引号的动画名称......

    -moz-animation-name: animation_m;
于 2013-02-17T09:14:05.597 回答