Skip to content

Instantly share code, notes, and snippets.

@luizbills
Created July 14, 2024 22:10
Show Gist options
  • Save luizbills/74c976ed87ff6cf37a48a5e13bfcd22b to your computer and use it in GitHub Desktop.
Save luizbills/74c976ed87ff6cf37a48a5e13bfcd22b to your computer and use it in GitHub Desktop.
CSS blink animation
#text {
animation: blink 1.5s linear infinite;
}
@keyframes blink {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment