Advertisement
Guest User

Untitled

a guest
Jul 31st, 2016
59
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, #30bf9a, #bf3061);
  2. background-size: 400% 400%;
  3. -webkit-animation: AnimationName 47s ease infinite;
  4. -moz-animation: AnimationName 47s ease infinite;
  5. -o-animation: AnimationName 47s ease infinite;
  6. animation: AnimationName 47s ease infinite;
  7. @-webkit-keyframes AnimationName {
  8.     0%{background-position:0% 54%}
  9.     50%{background-position:100% 47%}
  10.     100%{background-position:0% 54%}
  11. }
  12. @-moz-keyframes AnimationName {
  13.     0%{background-position:0% 54%}
  14.     50%{background-position:100% 47%}
  15.     100%{background-position:0% 54%}
  16. }
  17. @-o-keyframes AnimationName {
  18.     0%{background-position:0% 54%}
  19.     50%{background-position:100% 47%}
  20.     100%{background-position:0% 54%}
  21. }
  22. @keyframes AnimationName {
  23.     0%{background-position:0% 54%}
  24.     50%{background-position:100% 47%}
  25.     100%{background-position:0% 54%}
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement