Skip to content

Instantly share code, notes, and snippets.

@j2deme
Created May 19, 2021 15:39
Show Gist options
  • Save j2deme/09e3525c7eb84295c03dac38a668ac62 to your computer and use it in GitHub Desktop.
Save j2deme/09e3525c7eb84295c03dac38a668ac62 to your computer and use it in GitHub Desktop.
Fondo Pulsante con Animación CSS
.element {
width: 100%;
height: 100%;
animation: pulse 5s infinite;
}
@keyframes pulse {
0% {
background-color: #001F3F;
}
100% {
background-color: #FF4136;
}
}
html,
body {
height: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment