Skip to content

Instantly share code, notes, and snippets.

@CodeMyUI
Created July 3, 2017 23:31
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save CodeMyUI/43aea619d1a488027038f6c4a9aa6de0 to your computer and use it in GitHub Desktop.
Save CodeMyUI/43aea619d1a488027038f6c4a9aa6de0 to your computer and use it in GitHub Desktop.
Auto Type CSS !
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Mampel</title>
</head>
<body>
<h1>Hello , CSS-Support !</h1>
</body>
</html>
@-webkit-keyframes typing { from { width: 0; } }
@-webkit-keyframes blink-caret { 50% { border-color: transparent; } }
h1 {
font: bold 300% Consolas, Monaco, monospace;
border-right: .1em solid black;
width: 16.5em;
width: 21ch;
margin: 2em 1em;
white-space: nowrap;
overflow: hidden;
-webkit-animation: typing 2s steps(21, end),
blink-caret .5s step-end infinite alternate;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment