我尝试将动画animation
应用于.about_us_right
的div wpb_wrapper
的第三个<h4>
中包含的超链接。
.about_us_list_right .wpb_wrapper h4:nth-child(3) a {
-webkit-animation: animation 3s ease-out !important;
-webkit-animation-iteration-count: infinite !important;
}
@-webkit-keyframes animation {
0% {
color: red !important;
}
50% {
color: green !important;
}
100% {
color: red !important;
}
}
有人能看到这里有什么不好吗?是否不允许将动画应用于超链接?
我已经将这些代码行应用于不同的div,但以前从未应用于超链接!
2条答案
按热度按时间olmpazwi1#
你的哪点不好?基本上和下面一样吗?
我去掉了所有的“!“重要的是,它把它弄得乱七八糟。锚点
<a>
标签实际上是在H4内,正确吗?我就是这么做的我假设“div wpb_wrapper of .about_us_right”是指
.web_wrapper
在about_us_right
内部。9avjhtql2#
正如Bman 70所说,你不能使用重要的内部关键帧:
https://developer.mozilla.org/en-US/docs/Web/CSS/@keyframes