Created
December 23, 2014 09:58
-
-
Save ijse/ac279cb9de12ab348096 to your computer and use it in GitHub Desktop.
css3-typing-animation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@keyframes typing{from { width: 0; } } | |
@-webkit-keyframes typing{from { width: 0; } } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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