Skip to content

Instantly share code, notes, and snippets.

@ijse
Created December 23, 2014 09:58
Show Gist options
  • Save ijse/ac279cb9de12ab348096 to your computer and use it in GitHub Desktop.
Save ijse/ac279cb9de12ab348096 to your computer and use it in GitHub Desktop.
css3-typing-animation
@keyframes typing{from { width: 0; } }
@-webkit-keyframes typing{from { width: 0; } }
.listBoard.typing li {
display: block;
width: 20em;
font-size: 16px;
animation: typing 4s steps(60, end);
-webkit-animation: typing 4s steps(60, end);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment