gpt4 book ai didi

html - 如何为 Ionicon 的颜色设置动画?

转载 作者:可可西里 更新时间:2023-11-01 13:31:32 25 4
gpt4 key购买 nike

我想要一个 ionicon (猜猜它的 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; }
}

最佳答案

您使用 ionicons 作为字体。只需将 fill 更改为 color,就像这样 -

@-webkit-keyframes animation-button {
0% {color:red; }
25% {color:yellow; }
50% {color:blue; }
75% {color:green; }
100% {color:red; }
}

@keyframes animation-button {
0% {color:red; }
25% {color:yellow; }
50% {color:blue; }
75% {color:green; }
100% {color:red; }
}

这里是 Bootstrap Glyphicons 的演示。

Fiddle

关于html - 如何为 Ionicon 的颜色设置动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29077800/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com