2

这个JSFiddle包含一个 CSS 动画,适用于我在 Chrome、Firefox 和 Safari 中,但不适用于 IE 10。它不会在 IE10 中启动动画 - 这里看不出有什么问题吗?

    .x1 {
          left: 200px;
          top: -150px;

         -webkit-transform: scale(0.8);
         -moz-transform: scale(0.8);
         -o-transform: scale(0.8);
         -ms-transform: scale(0.8);
          transform: scale(0.8);
         -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
          filter: alpha(opacity=80);
          opacity: 0.8;

         -webkit-animation: moveclouds 47s linear infinite;
         -moz-animation: moveclouds 47s linear infinite;
         -ms-animation: moveclouds 47s linear infinite;
         -o-animation: moveclouds 47s linear infinite;
          animation: moveclouds 47s linear infinite;
        }


      @keyframes "moveclouds" {
          0% {
              margin-left: 1000px;
             }
        100% {
             margin-left: -1000px;
             }
        }

      @-moz-keyframes moveclouds {
         0% {
             margin-left: 1000px;
            }
       100% {
             margin-left: -1000px;
            }
        }

      @-webkit-keyframes "moveclouds" {
         0% {
             margin-left: 1000px;
            }
       100% {
             margin-left: -1000px;
            }
        }

      @-ms-keyframes "moveclouds" {
         0% {
             margin-left: 1000px;
            }
       100% {
             margin-left: -1000px;
            }
        }

     @-o-keyframes "moveclouds" {
       0% {
           margin-left: 1000px;
          }
     100% {
           margin-left: -1000px;
          }
       }

这是 JsFiddle 链接http://jsfiddle.net/zXTSp/1/

4

1 回答 1

1

在 IE10 中尝试 Jsfiddle

http://jsfiddle.net/2V3Sx/

它应该是 @-webkit-keyframes moveclouds {

不是 @-webkit-keyframes "moveclouds" {……错字……:)

希望这有效

于 2013-07-25T06:59:12.230 回答