css3动画:animation
例: -webkit-animation: myfirst 5s linear 2s infinite alternate; animation: myfirst 5s linear 2s infinite alternate;@keyframes myfirst{ from{background:red;} to{background:yellow;}}@-webkit-keyframes myfirst{ frome{background:red;} to{background:yellow;}} //或者@keyframes myfirst{ 0%{ } 25%{ } 50%{ } 100%{ }} 参数及含义: animation-name: 动画的名字 animation-duration: 动画完成一个周期所花费的秒数,默认是0 animation-timing-function: 规定动画的速度曲线,默认是ease(动画以低速开始,然后加块,在结束前变慢); linear(动画从头到尾的速度是相同的) ease-in(动画以低速开始) ease-out(动画以低速结束) ease-in-out(动画以低速开始和结束) animation