用keyframes设置动画,然后animate应用动画
@keyframes myfirst { 0% {background: red;} 25% {background: yellow;} 50% {background: blue;} 100% {background: green;}}
div { animation: myfirst 5s linear infinite;}
Via. http://w3school.com.cn/css3/css3_animation.asp