gpt4 book ai didi

css - 为什么我的 css 动画中没有出现文本装饰更改?

转载 作者:太空宇宙 更新时间:2023-11-03 22:02:36 24 4
gpt4 key购买 nike

我想在 HTML 中模拟一个控制台 UI,我需要在文本下方有一个闪烁的下划线。我的方法是将类设置为具有动画的 underblink。颜色循环,文本隐藏和取消隐藏,但下划线永远不会出现。为什么?

CSS:

  @-webkit-keyframes underblink {
0% { text-decoration: none;opacity: 0:color :orange }
50% { text-decoration: none;opacity: 0;color:green }
50.01% { text-decoration: underline;opacity: 1 }
100% { text-decoration: underline;opacity: 1 }
}

.underblink {
-webkit-animation: underblink 0.7s infinite linear alternate;
-webkit-font-smoothing: antialiased;
display:inline-block;
}

HTML:

<div id='always_sort_recursively' class='underblink'>x</div>

最佳答案

... but the underline never appears. Why ?

因为 text-decoration 不在 list of animatable css properties 中.

关于css - 为什么我的 css 动画中没有出现文本装饰更改?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9320279/

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