Advertisement
firoze

Css background color animation

May 14th, 2016
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. Css background color animation
  2.  
  3. source link:https://www.gradient-animator.com/
  4. ***********************************************
  5.  
  6.  
  7. background: linear-gradient(268deg, #0f765b, #1a0f76, #b9b8c1, #e318ee, #57075c);
  8. background-size: 1000% 1000%;
  9.  
  10. -webkit-animation: AnimationName 27s ease infinite;
  11. -moz-animation: AnimationName 27s ease infinite;
  12. animation: AnimationName 27s ease infinite;
  13.  
  14. @-webkit-keyframes AnimationName {
  15. 0%{background-position:0% 50%}
  16. 50%{background-position:100% 50%}
  17. 100%{background-position:0% 50%}
  18. }
  19. @-moz-keyframes AnimationName {
  20. 0%{background-position:0% 50%}
  21. 50%{background-position:100% 50%}
  22. 100%{background-position:0% 50%}
  23. }
  24. @keyframes AnimationName {
  25. 0%{background-position:0% 50%}
  26. 50%{background-position:100% 50%}
  27. 100%{background-position:0% 50%}
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement