Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
75
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(329deg, #ceb217, #405fdf);
  2. background-size: 400% 400%;
  3. -webkit-animation: AnimationName 9s ease infinite;
  4. -moz-animation: AnimationName 9s ease infinite;
  5. -o-animation: AnimationName 9s ease infinite;
  6. animation: AnimationName 9s ease infinite;
  7. @-webkit-keyframes AnimationName {
  8.     0%{background-position:94% 0%}
  9.     50%{background-position:7% 100%}
  10.     100%{background-position:94% 0%}
  11. }
  12. @-moz-keyframes AnimationName {
  13.     0%{background-position:94% 0%}
  14.     50%{background-position:7% 100%}
  15.     100%{background-position:94% 0%}
  16. }
  17. @-o-keyframes AnimationName {
  18.     0%{background-position:94% 0%}
  19.     50%{background-position:7% 100%}
  20.     100%{background-position:94% 0%}
  21. }
  22. @keyframes AnimationName {
  23.     0%{background-position:94% 0%}
  24.     50%{background-position:7% 100%}
  25.     100%{background-position:94% 0%}
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement