Advertisement
fairygay

pulsing background

Oct 26th, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. @-webkit-keyframes pulse {
  2. 0% {background-color: #FFD1CC;} /**colors appear in this order**/
  3. 25% {background-color: #FFB4C7; }
  4. 50% {background-color: #FFC2F6; }
  5. 75% {background-color: #E5B7FC; }
  6. 100% {background-color: #E0C8FF;} }
  7.  
  8. body {
  9. background-color: #FFD1CC; /**same as 0%**/
  10. -webkit-animation: pulse 10s infinite alternate; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement