Skip to content

Instantly share code, notes, and snippets.

@nhalstead
Created January 22, 2020 04:12
Show Gist options
  • Save nhalstead/05835bd8504ae5026d0693670fb6f795 to your computer and use it in GitHub Desktop.
Save nhalstead/05835bd8504ae5026d0693670fb6f795 to your computer and use it in GitHub Desktop.
Loading HTMLBody
<!DOCTYPE html><html> <head> <titleLoading.../title><style>body{background-color: #121212;color: #FFFFFF}.loading:after{content: ".";animation: dots 1s steps(5, end) infinite;}@keyframes dots{0%, 20%{color: rgba(0, 0, 0, 0); text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);}40%{color: #FFFFFF; text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);}60%{text-shadow: 0.25em 0 0 white, 0.5em 0 0 rgba(0, 0, 0, 0);}80%, 100%{text-shadow: 0.25em 0 0 white, 0.5em 0 0 white;}}</style> </head> <body> <div style="padding: 75px 50px 125px;"> <p style="text-align: center;"> <br/> <span style="font-family: tahoma; font-size: 32px;" class="loading">Loading</span> </p></div></body></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment