Created
May 19, 2021 15:39
-
-
Save j2deme/09e3525c7eb84295c03dac38a668ac62 to your computer and use it in GitHub Desktop.
Fondo Pulsante con Animación CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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