<html>
<head>
<meta charset="utf-8">
<style>
#myDIV
{
width:300px;
height:200px;
background:red;
animation:mymove 5s infinite;
/*Safari 和 Chrome:*/
animation:mymove 5s infinite;
}
@keyframes mymove
{
from {background-color:red;}
to {background-color:blue;}
}
/*Safari 和 Chrome:*/