Heim > Fragen und Antworten > Hauptteil
#myDIV
{
width:300px;
height:200px;
background:red;
animation:mymove 5s infinite;
/*-webkit- 不知道是什么意思*/
-Webkit -animation:mymove 2s unendlich;
}
@keyframes mymove{
von {background-color:red;}
bis {background-color:blue;}
}
@- Webkit-Keyframes mymove{
von {background-color:red;}
bis {background-color:blue;}
}