我对Stackoverflow以及Web上的每个地方都进行了一些有关IE关键帧问题的研究,但找不到合适的答案。

我无法将下面的CSS代码用于IE,并且不知道如何解决此问题:

body{
  color: #444444;
  text-align: center;
  height: 100%;
  background-color: #fff;
  font-family: 'Montserrat', helvetica, arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  opacity: 0;
  -webkit-animation: showImg 1200ms 600ms forwards ease-out;
  -o-animation: showImg 1200ms 600ms forwards ease-out;
  -moz-animation: showImg 1200ms 600ms forwards ease-out;
  animation: showImg 1200ms 600ms forwards ease-out;
}

@keyframes showImg{
  100% {
    opacity: 1;
  }
}

@keyframes hideImg{
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes showImg{
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes hideImg{
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-o-keyframes showImg{
  100% {
    opacity: 1;
  }
}

@-o-keyframes hideImg{
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


它在Firefox和Chrome上正常运行。

有没有人已经迷惑过这个问题?

预先感谢您一百万。

最佳答案

我也有这个问题。我在@media only屏幕和(最大宽度:600像素)和(方向:纵向){}中具有关键帧。 @media以外的关键帧对我有用

关于css - 关键帧在IE上不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38837371/

10-17 02:16