Guest User

Untitled

a guest
Dec 13th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. background: linear-gradient(270deg, #ff0000, #ff8800, #ffff00, #00ff00, #0000ff, #8888ff, #8800ff);
  2. background-size: 1400% 1400%;
  3. -webkit-animation: AnimationName 30s ease infinite;
  4. -moz-animation: AnimationName 30s ease infinite;
  5. -o-animation: AnimationName 30s ease infinite;
  6. animation: AnimationName 30s ease infinite;
  7. @-webkit-keyframes AnimationName {
  8. 0%{background-position:0% 50%}
  9. 50%{background-position:100% 50%}
  10. 100%{background-position:0% 50%}
  11. }
  12. @-moz-keyframes AnimationName {
  13. 0%{background-position:0% 50%}
  14. 50%{background-position:100% 50%}
  15. 100%{background-position:0% 50%}
  16. }
  17. @-o-keyframes AnimationName {
  18. 0%{background-position:0% 50%}
  19. 50%{background-position:100% 50%}
  20. 100%{background-position:0% 50%}
  21. }
  22. @keyframes AnimationName {
  23. 0%{background-position:0% 50%}
  24. 50%{background-position:100% 50%}
  25. 100%{background-position:0% 50%}
  26. }
Add Comment
Please, Sign In to add comment