Created
August 31, 2016 17:45
-
-
Save sudarshanReddykurri/712cf849ca4d60b50bc76230597b8c79 to your computer and use it in GitHub Desktop.
Word typing animation in CSS
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
| <p></p>Now i am typing </p> |
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
| p{ | |
| font-size: 20px; | |
| white-space: nowrap; | |
| color: black; | |
| overflow: hidden; | |
| width: 30em; | |
| animation: type 12s steps(60, end); | |
| } | |
| @keyframes type{ | |
| from { width: 0; } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment