CSS Color Change

Background color transition test.

by conzett

CSS

@-webkit-keyframes shift {
    0% {background: red;}
    25% {background: blue;}
    50% {background: green;}
    75% {background: yellow;}
    100% {background: red;} 
}

body {
    -webkit-animation: shift 6s infinite linear;
}