Skip to content

Instantly share code, notes, and snippets.

@GradientAnimator
Created May 19, 2024 04:31
Show Gist options
  • Save GradientAnimator/9c475bf2dcf10543fc57045b90aca49a to your computer and use it in GitHub Desktop.
Save GradientAnimator/9c475bf2dcf10543fc57045b90aca49a to your computer and use it in GitHub Desktop.
CSS Gradient Animation
.css-selector {
    fondo: gradiente lineal ( 29 grados , #f2bfbf, #e7ecb8, #b9debe, #033759, #e387b8, #b2aae1);
    tamaño de fondo:1200% 1200%;
    -webkit-animation: luxy 8sluxxy8s facilita infinita;
    -moz-animation: luxy 8sluxxy8s facilita infinita;
    -o-animation: luxy 8sluxxy8s facilita infinita;
    animación: luxy 8sluxxy8s facilidad infinita;
}
@-webkit-keyframes luxy {
    0%{posición-fondo: 99% 0% }
    50%{posición-fondo: 2% 100% }
    100%{posición-fondo: 99% 0% }
}
@-moz-keyframes luxy {
    0%{posición-fondo: 99% 0% }
    50%{posición-fondo: 2% 100% }
    100%{posición-fondo: 99% 0% }
}
@-o-keyframes luxy {
    0%{posición-fondo: 99% 0% }
    50%{posición-fondo: 2% 100% }
    100%{posición-fondo: 99% 0% }
}
@keyframes luxy {
    0%{posición-fondo: 99% 0% }
    50%{posición-fondo: 2% 100% }
    100%{posición-fondo: 99% 0% }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment