前提・実現したいこと
CSSのcontentをアニメーションさせたいのですが、該当のソースコードでは動きません
text1→text2→text1や→と文字を変えていきたいのですが、書き方が間違ってますでしょうか?
該当のソースコード
CSS
1<style> 2.text_change{ 3 animation:1s ease infinite alternate change_text; 4} 5@keyframes change_text{ 6 0%{ div.text_change:before {content: "text1" } } 7 100%{ div.text_change:after {content: "text2" } } 8} 9 10</style> 11 12<div class="text_change"></div>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。