CSS3 ANIMATION

1. Using “From” and “To” Keywords: To Change Color

 

The example below will change the color of the box from blue to green in 6 seconds.
<!DOCTYPE html>
<html>
<head>
<style>
div{width:100px;height:100px;background:blue;
-webkit-animation-name: changeColor;
-webkit-animation-duration: 6s;
animation-name:changeColor;
animation-duration: 6s;
}

@-webkit-keyframes changeColor {
from {background:blue;}
to {background:green;}
}

@keyframes changeColor {
from {background:blue;}
to {background:green;}
}
</style>

</head>
<body>
<div></div>
</body>
</html>
NOTES: