Return to Snippet

Revision: 36619
at November 24, 2010 04:53 by Nettuts


Initial Code
body {
   background: white;
   -webkit-animation-name: fade;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: 1;
}

@-webkit-keyframes fade {
   0% {
    background: red;
   }
   25% {
    background: green;
   }
   50% {
   background: blue;
   }
   75% {
   background: orange;
   }
   100% {
      background: white;
   }
}

Initial URL


Initial Description


Initial Title
Background Color Transitions with CSS3

Initial Tags


Initial Language
CSS