Advertisement
Guest User

Untitled

a guest
Oct 21st, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. background: linear-gradient(179deg, #9f3707, #f7ad30, #877b67);
  2. background-size: 600% 600%;
  3. -webkit-animation: AnimationName 10s ease infinite;
  4. -moz-animation: AnimationName 10s ease infinite;
  5. -o-animation: AnimationName 10s ease infinite;
  6. animation: AnimationName 10s ease infinite;
  7. @-webkit-keyframes AnimationName {
  8.     0%{background-position:0% 92%}
  9.     50%{background-position:100% 9%}
  10.     100%{background-position:0% 92%}
  11. }
  12. @-moz-keyframes AnimationName {
  13.     0%{background-position:0% 92%}
  14.     50%{background-position:100% 9%}
  15.     100%{background-position:0% 92%}
  16. }
  17. @-o-keyframes AnimationName {
  18.     0%{background-position:0% 92%}
  19.     50%{background-position:100% 9%}
  20.     100%{background-position:0% 92%}
  21. }
  22. @keyframes AnimationName {
  23.     0%{background-position:0% 92%}
  24.     50%{background-position:100% 9%}
  25.     100%{background-position:0% 92%}
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement