Gradient animator

123
1)
Color:
Step: %
2)
Color:
Step: %
3)
Color:
Step: %
Angle:
deg
Animation settings
Code Copied!
/**
 * ----------------------------------------
 * animation class
 * ----------------------------------------
 **/

.animated-gradient {
    background: #9841c4;
    background: linear-gradient(90deg,  #9841c4 0%, #416fc6 49%, #59dee9 100%);
    background-size: 400% 400%;
    /* You can change animation name from 'undefined' */
    animation: undefined 20000ms ease-in-out infinite both;
    -webkit-animation: undefined 20000ms ease-in-out infinite both;
}

/**
 * ----------------------------------------
 * animation styles. You can change
 * animation name from 'undefined'
 * ----------------------------------------
 **/

 @-webkit-keyframes undefined {
    0%{background-position:37% 0%}
    50%{background-position:64% 100%}
    100%{background-position:37% 0%}
}
@keyframes undefined {
    0%{background-position:37% 0%}
    50%{background-position:64% 100%}
    100%{background-position:37% 0%}
}