Skip to content

Instantly share code, notes, and snippets.

@barnettjw
Created April 10, 2015 12:43
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 barnettjw/f338707d790bcfb7740e to your computer and use it in GitHub Desktop.
Save barnettjw/f338707d790bcfb7740e to your computer and use it in GitHub Desktop.
Terminal Style Loading Screen
<p>Loading<span>...</span></p>
body { background-color: black; }
@keyframes typing { from { width: 0; } }
@keyframes blink-caret { 50% { border-color: transparent; } }
p {
margin: 50px auto;
width: 600px;
font: bold 90px 'courier new', consolas, monaco, monospace;
color: green;
border-right: 6px solid;
overflow: hidden;
animation: typing 11s steps(11, end) infinite, /* # of steps = # of chars */
blink-caret 1s step-end infinite alternate;
}
span { letter-spacing: -10px; }

Terminal Style Loading Screen

Loading screen, old school terminal style. Made with CSS for the Pattern Radio.

A Pen by James Barnett on CodePen.

License.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment