2014-02-11 4 views
0

이 코드를 작성하여 css3 키 프레임을 사용하여 애니메이션 배경으로 만듭니다. 이 코드는 크롬에서 완벽하게 실행되지만 mozzila firefox.So에서 작동하지 않습니다.이 문제를 해결하는 데 도움주세요. 감사합니다.css3 애니메이션이 mozzila firefox에서 작동하지 않습니다.

  body 
    { 
    -webkit-animation: HONIBHICHAYE 15s ease alternate infinite; 
    -moz-animation: HONIBHICHAYE 15s ease alternate infinite; 
    animation: HONIBHICHAYE 15s ease alternate infinite; 
     background-size:100%; 
     background-repeat:no-repeat; 
     background-position:50% 50%; 
     font-family:"My Custom Font"; 
    } 
    @-webkit-keyframes HONIBHICHAYE 
    { 
     0% 
     { 
     background-image:url('../images/1.jpg'); 
     } 
     50% 
     { 
     background-image:url('../images/2.jpg'); 
     } 
     100% 
     { 
     background-image:url('../images/3.jpg'); 
     } 
    } 
    @-moz-keyframes HONIBHICHAYE 
      { 
     0% 
     { 
     background-image:url('../images/1.jpg'); 
     } 
      50% 
     { 
     background-image:url('../images/2.jpg'); 
     } 
     100% 
     { 
     background-image:url('../images/3.jpg'); 
     } 
     } 
     @keyframes HONIBHICHAYE 
      { 
     0% 
     { 
     background-image:url('../images/1.jpg'); 
} 
      50% 
     { 
     background-image:url('../images/2.jpg'); 
     } 
     100% 
     { 
      background-image:url('../images/3.jpg'); 
     } 
      } 

답변

0

필자가 시도한대로 background-image 애니메이션은 Mozilla Firefox에서 작동하지 않습니다. 그래도 background-color을 변경하면 작동합니다.

0

배경 이미지가 유효한 전환 가능한 속성이 아닙니다. Chrome에서 작동하지만 실제로는 안됩니다.

관련 문제