animation.css 532 B

123456789101112131415161718192021222324252627282930
  1. .animation-translation{
  2. animation:move 500ms infinite;
  3. -moz-animation:move 500ms infinite; /* Firefox */
  4. -webkit-animation:move 500ms infinite; /* Safari and Chrome */
  5. -o-animation:move 500ms infinite;/* Opera */
  6. }
  7. @keyframes move
  8. {
  9. from {top:0;}
  10. to {top:-50px;}
  11. }
  12. @-moz-keyframes move /* Firefox */
  13. {
  14. from {top:0;}
  15. to {top:-50px;}
  16. }
  17. @-webkit-keyframes move /* Safari and Chrome */
  18. {
  19. from {top:0;}
  20. to {top:-50px;}
  21. }
  22. @-o-keyframes move /* Opera */
  23. {
  24. from {top:0;}
  25. to {top:-50px;}
  26. }