Skip to content

Instantly share code, notes, and snippets.

@sudarshanReddykurri
Created August 31, 2016 17:45
Show Gist options
  • Save sudarshanReddykurri/712cf849ca4d60b50bc76230597b8c79 to your computer and use it in GitHub Desktop.
Save sudarshanReddykurri/712cf849ca4d60b50bc76230597b8c79 to your computer and use it in GitHub Desktop.
Word typing animation in CSS
<p></p>Now i am typing </p>
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