今夜はFirefox用にCSSタイプのアニメーションを修正しようとしています。 Chromeコードが動作します。私は何を失っているのですか?FirefoxのCSSタイピングアニメーションが機能しない
.css-typing
{
width: 680px;
white-space: nowrap;
overflow: hidden;
-webkit-animation: type 3s steps(50, end);
animation: type 3s steps(55, end);
-o-animation: type 5s steps(50, end);
-moz-animation: type 3s steps(55, end);
}
@keyframes type
{
from { width: 0; }
}
@-moz-keyframes type
{
from { width: 0; }
}
@-webkit-keyframes type
{
from { width: 0; }
}
このコードで定義する必要がありますdiv要素は次のようになります。
<div class='css-typing'>This text will pop up using an typewriting effect</div>
誰もが私の間違いを見つけていますか?
「div」には '.css-typing'がありません。 – TricksfortheWeb
typo ...言われたように、それはクロムで動作するので –