gpt4 book ai didi

css - 动画关键帧没有褪色?

转载 作者:太空宇宙 更新时间:2023-11-04 14:47:33 24 4
gpt4 key购买 nike

@keyframes test {

0% { color: red; } /* Starts red */
50% { color: green; } /* Fades to green from red */
100% { color: blue; } /* Instant blue? Is no fading from green possible? */

}

是否有可能从 red 正常过渡到 green 0% - 50%,然后 blue 在没有过渡?所以在上面的示例中,一旦完成 50%,它会立即变为 蓝色(即不会从绿色淡入)直到 100% 完成?

最佳答案

看看这个fiddle工作正常

<div class="top"></div>

.top {
width: 100px;
height: 100px;
background: red;
animation: test 5s;
}

@keyframes test {
0% { background:red; }
50% { background:green; }
50.01% { background:blue; }
100% { background:blue; }
}

关于css - 动画关键帧没有褪色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17724969/

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