Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Css background color animation
- source link:https://www.gradient-animator.com/
- ***********************************************
- background: linear-gradient(268deg, #0f765b, #1a0f76, #b9b8c1, #e318ee, #57075c);
- background-size: 1000% 1000%;
- -webkit-animation: AnimationName 27s ease infinite;
- -moz-animation: AnimationName 27s ease infinite;
- animation: AnimationName 27s ease infinite;
- @-webkit-keyframes AnimationName {
- 0%{background-position:0% 50%}
- 50%{background-position:100% 50%}
- 100%{background-position:0% 50%}
- }
- @-moz-keyframes AnimationName {
- 0%{background-position:0% 50%}
- 50%{background-position:100% 50%}
- 100%{background-position:0% 50%}
- }
- @keyframes AnimationName {
- 0%{background-position:0% 50%}
- 50%{background-position:100% 50%}
- 100%{background-position:0% 50%}
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement