Skip to content

Instantly share code, notes, and snippets.

@kitasenjudesign
Created May 23, 2023 02:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kitasenjudesign/936fb1342c1beaccb4cd450b9769532f to your computer and use it in GitHub Desktop.
Save kitasenjudesign/936fb1342c1beaccb4cd450b9769532f to your computer and use it in GitHub Desktop.
Blink
<div class="blink">HELLO WORLD</div>
body{
margin: 50px;
}
@keyframes blink {
0% { opacity: 0; }
50% { opacity: 1; }
100% { opacity: 0; }
}
.blink {
font-size: 99pt;
animation-name: blink;
animation-duration: 1s;
animation-iteration-count: infinite;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment