Last active
February 15, 2020 06:44
-
-
Save akshitkrnagpal/c6406be7fc9d27d8509fca190aff7085 to your computer and use it in GitHub Desktop.
CSS Animation for LED
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
/** CSS for animation **/ | |
@keyframes led { | |
0% { opacity: 1; } | |
50% { opacity: 1; } | |
51% { opacity: 0.2; } | |
100% { opacity: 0; } | |
} | |
.my-class { | |
animation: led 5s infinite; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment