gpt4 book ai didi

css3动画不断变化

转载 作者:行者123 更新时间:2023-11-28 09:02:28 25 4
gpt4 key购买 nike

我正在尝试实现 css3 动画....我计划改变我的目标 影响循环不断但问题是在一个周期后它以红色停止它不会进一步改变它的颜色....如何继续循环...

http://jsfiddle.net/9CZFS/

在下面提供我的代码

div
{
width:100px;
height:100px;
background:red;
animation:myfirst 5s;
-moz-animation:myfirst 5s; /* Firefox */
-webkit-animation:myfirst 5s; /* Safari and Chrome */
-o-animation:myfirst 5s; /* Opera */
}

@keyframes myfirst
{
0% {background:red;}
25% {background:yellow;}
50% {background:blue;}
100% {background:green;}
}

@-moz-keyframes myfirst /* Firefox */
{
0% {background:red;}
25% {background:yellow;}
50% {background:blue;}
100% {background:green;}
}

@-webkit-keyframes myfirst /* Safari and Chrome */
{
0% {background:red;}
25% {background:yellow;}
50% {background:blue;}
100% {background:green;}
}

@-o-keyframes myfirst /* Opera */
{
0% {background:red;}
25% {background:yellow;}
50% {background:blue;}
100% {background:green;}
}

最佳答案

参见此处:http://jsfiddle.net/9CZFS/1/

animation:myfirst 5s linear infinite;
----^-----

您需要指定动画将永远循环播放。

此外,如果您希望动画流畅,您需要让它以相同的值开始和结束:

0%,100%   {background:red;}
25% {background:yellow;}
50% {background:blue;}
75% {background:green;}

关于css3动画不断变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13768706/

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