Skip to content

Instantly share code, notes, and snippets.

@GradientAnimator
Created November 15, 2024 22:24
Show Gist options
  • Save GradientAnimator/16b2c9289b718294108e93072ad382c3 to your computer and use it in GitHub Desktop.
Save GradientAnimator/16b2c9289b718294108e93072ad382c3 to your computer and use it in GitHub Desktop.
CSS Gradient Animation
.seletor-css {
    fundo: gradiente linear ( 290 graus , #b006ff, #5700d0);
    tamanho-de-fundo:400% 400%;
    -webkit-animation: AnimaçãoNome 6s facilidade infinita;
    -moz-animation: Nome da animação facilidade 6s
    -o-animation: Nome da animação facilidade 6s
    animação: Nome da animação facilidade 6s infinita;
}
@-webkit-keyframes Nome da animação {
    0%{posição-de-fundo: 62% 0% }
    50%{posição-de-fundo: 39% 100% }
    100%{posição-de-fundo: 62% 0% }
}
@-moz-keyframes Nome da animação {
    0%{posição-de-fundo: 62% 0% }
    50%{posição-de-fundo: 39% 100% }
    100%{posição-de-fundo: 62% 0% }
}
@-o-keyframes Nome da animação {
    0%{posição-de-fundo: 62% 0% }
    50%{posição-de-fundo: 39% 100% }
    100%{posição-de-fundo: 62% 0% }
}
@keyframes Nome da animação {
    0%{posição-de-fundo: 62% 0% }
    50%{posição-de-fundo: 39% 100% }
    100%{posição-de-fundo: 62% 0% }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment