1

我正在使用 autoprefixer 并认为 firefox 中的关键帧不必加前缀。(使用最新的FF38)

我原来的 CSS

.blinking-cursor {
  font-weight: 100;
  font-size: 1rem;
  color: #2E3D48;
  animation: 1s blink step-end infinite;
}

@keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
<span class="blinking-cursor">|</span>

由 autoprefixer 生成的 CSS

.blinking-cursor {
  display:block;
  font-weight: 100;
  font-size: 30px;
  color: #2E3D48;
  -webkit-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}
@keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
@-webkit-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
<span class="blinking-cursor">|</span>

-moz那么如果使用了http://codepen.io/ArtemGordinsky/pen/GnLBq,为什么光标在动画时不动画

4

1 回答 1

2

"删除关键帧声明中动画名称周围的引号。动画名称是一个标识符,而不是一个字符串。

@keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
于 2015-07-07T09:08:17.900 回答