<!DOCTYPE html>
<html>
<head>
<style> 
div
{
width:100px;
height:100px;
background:Green;
animation:myfirst 5s;
-webkit-animation:myfirst 5s; /* Safari and Chrome */
}

@keyframes myfirst
{
from {background:Green;}
to {background:White;}
}

@-webkit-keyframes myfirst /* Safari and Chrome */
{
from {background:Green;}
to {background:White;}
}
</style>
</head>
<body>

<p><b>Note:</b> This example does not work in Internet Explorer 9 and earlier versions.</p>

<div></div>

</body>
</html>
