Skip to content

Instantly share code, notes, and snippets.

@akshitkrnagpal
Last active February 15, 2020 06:44
Show Gist options
  • Save akshitkrnagpal/c6406be7fc9d27d8509fca190aff7085 to your computer and use it in GitHub Desktop.
Save akshitkrnagpal/c6406be7fc9d27d8509fca190aff7085 to your computer and use it in GitHub Desktop.
CSS Animation for LED

CSS for LED-like Animation

/** 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