Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 27th, 2012  |  syntax: None  |  size: 0.36 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #loading {
  2.         width: 20px;
  3.         height: 20px;
  4.         margin: 100px;
  5.         background: green;
  6.         border-radius: 10px;
  7.         box-shadow: 0px 10px 10px -8px green;
  8.         -webkit-animation-name: loading;
  9.         -webkit-animation-duration: 10s;
  10.         -webkit-animation-iteration-count: infinite;
  11.         -webkit-animation-timing-function: ease-in;
  12.  
  13.  
  14. }
  15.  
  16. @keyframes loading      {
  17.         0% {width: 20px;}
  18.         90% {width: 1000px;}
  19. }