我正在嘗試更改CSS僞元素:之前元素內容與動畫類似於jsfiddle here。更改:動畫內容之前
#thing:before
{
content:"TEST00";
background-color:rgba(200,200,200,0.8);
animation:sideText 30s ease-in-out infinite;
}
@keyframes sideText
{
0% {content:"TEST1A";background-color:rgba(180,90,200,0.8)}
30%{content:"TEST1B"}
32%{content:"TEST2A";background-color:rgba(80,190,200,0.8)}
60%{content:"TEST2B"}
62%{content:"TEST3A";background-color:rgba(80,90,20,0.8)}
98%{content:"TEST3B"}
100%{content:"TEST1C"}
}
在Chrome中工作很好,只有Firefox中的背景更改& Safari。
這是我應該接受的不在這兩個瀏覽器中工作的東西,還是有另一種方法來做到這一點?
我試過不同的供應商前綴,但沒有成功。
據我所知,它只能在chrome中工作。 –