gpt4 book ai didi

css - 使用 css 动画文本

转载 作者:太空狗 更新时间:2023-10-29 12:39:10 25 4
gpt4 key购买 nike

我正在尝试使用 css 中的关键帧为文本设置动画:

我的 html 代码:

@keyframes animate {
0% {
content: "Animate"
}
50% {
content: "text using"
}
100% {
content: "CSS!!"
}
}

.change-text::after {
animation: animate 5s infinite;
}
<center>
<p class="change-text">
Text will change here
</p>
</center>

但是文字没有变化,帮我看看我的代码哪里出了问题?

最佳答案

发生这种情况是因为您没有在 after 中提供 content 属性。只需将 content: ""; 添加到 .change-text::after

@keyframes animate{
0%{
content : "Animate"
}
50%{
content : "text using"
}
100%{
content : "CSS!!"
}
}
.change-text::after{
animation : animate 5s infinite;
content: ""; // Added
}
<center>
<div class="change-text">
Text will change here
</div>
</center>

关于css - 使用 css 动画文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57935892/

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