Skip to content

Instantly share code, notes, and snippets.

@GradientAnimator
Created May 19, 2024 04:07
Show Gist options
  • Save GradientAnimator/26ee4e05dccd2018683b612bbc90c06b to your computer and use it in GitHub Desktop.
Save GradientAnimator/26ee4e05dccd2018683b612bbc90c06b 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 30sluxxy30 años facilita infinita;
    -moz-animation: luxy 30sluxxy30 años facilita infinita;
    -o-animation: luxy 30sluxxy30 años facilita infinita;
    animación: luxy 30sluxxy30 años 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