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

Untitled

By: a guest on May 15th, 2012  |  syntax: None  |  size: 0.33 KB  |  hits: 12  |  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. CSS3 animation called twice for same element
  2. .myClass{
  3.     -webkit-animation: animationName 1s linear 2s, animationName 1s linear 4s;
  4. }
  5.        
  6. .myClass{
  7.     -webkit-animation: animationName 1s linear 2s, animationName2 1s linear 4s;
  8. }
  9.        
  10. -webkit-animation: <name> <duration> <timing_function> <delay> <iteration_count> <direction>