Ich möchte Inhalte in der Klasse .glyphicon-volume-down:before
(Klassensymbol in Bootstrap) ändern, sondern nur auf Google Chrome arbeiten.Keyframes ändern Inhalt Attribut funktioniert nicht unter Firefox
Meine Keyframes ändern das Attribut content
nicht, aber es ändert die Farbe.
Ich weiß nicht, was ich vermisse? Ich möchte kein JavaScript verwenden.
Hier ist mein Code:
.glyphicon-volume-down:before{
/*name keyframes is w-spin*/
animation-name:w-volume;
/*time animation done is 2s*/
animation-duration: 2s;
/*delay time when start animation is 0s*/
animation-delay: 0s;
/*loop animation forever*/
animation-iteration-count:infinite;
/*effect animation run with the same speed from start to end*/
animation-timing-function:linear;
/*default pause animation*/
/*animation-play-state:paused;*/
/*repeat*/
animation-direction: alternate;
-webkit-animation-name: w-volume;
-webkit-animation-duration: 2s;
-webkit-animation-delay: 0s;
-webkit-animation-iteration-count:infinite;
-webkit-animation-timing-function:linear;
/*-webkit-animation-play-state:paused;*/
-webkit-animation-direction: alternate;
}
@-webkit-keyframes w-volume {
0% {
content:"text1";
color:yellow;
}
100% {
content:"text2";
color: red;
}
}
@keyframes w-volume {
0% {
content:"text1";
color:yellow;
}
100% {
content:"text2";
color: red;
}
}
** Dank bro, ** –