CSS3 animation 01

by catfood

HTML

<h1>hogehoge</h1>

CSS

@-webkit-keyframes hogeName{
    0% {background-color:red}
    50% {background-color:yellow}
    100% {background-color:black}
}
h1{
    -webkit-animation:hogeName 5s;
}