イオコン(SVG だと思います) に繰り返し色を変えてもらいたいです。次のことを試しましたが、svgアイコンが紫色でしか表示されません:
エレメント
<a class="ion-social-twitter button-home"></a>
CSS
.button-home {
fill: #fff;
-webkit-animation: animation-button 20000ms infinite;
-moz-animation: animation-button 20000ms infinite;
-o-animation: animation-button 20000ms infinite;
animation: animation-button 20000ms infinite;
font-size: 25vh;
}
@-webkit-keyframes animation-button {
0% {fill:red; }
25% {fill:yellow; }
50% {fill:blue; }
75% {fill:green; }
100% {fill:red; }
}
@keyframes animation-button {
0% {fill:red; }
25% {fill:yellow; }
50% {fill:blue; }
75% {fill:green; }
100% {fill:red; }
}