私は 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