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 に答える