建议不要使用form,to,使用百分比控制
@keyframes myAnimation
{
0% { margin-top: 0px; background-color: yellow;}
50% { margin-top: 50px; background-color: red; }
100% { margin-top: 100px; background-color: blue; }
}
@keyframes myAnimation
{
0% { margin-top: 0px; background-color: yellow;}
50% { margin-top: 50px; background-color: red; }
100% { margin-top: 100px; background-color: blue; }
}
2015-06-04