william mison logo
  • Home
  • About Me
  • Work
  • Archive
  • Resume
  • Home
  • About Me
  • Work
  • Archive
  • Resume

Typing Text Animation

Typing Text Animation using only css!
  • HTML
  • CSS
  • 
    <div class="typing-text">
        Typing Text Animation using only css!
    </div>
  • 
    /* typing effect */
        .typing-text{
        width: 37ch;
        animation: typing 2s steps(38), blink .5s step-end infinite alternate;
        white-space: nowrap;
        overflow: hidden;
        border-right: 3px solid;
        font-family: monospace;
        font-size: 20px;
    }
    /* keyfranes animation */
    @keyframes typing{
        from{
            width: 0;
        }
    }
    @keyframes blink {
        50% {
            border-color: transparent
        }
    }
    

Start a project

Interested in working together?

Contact Me! live:misonwilliam
william mison footer logo
William Mison
Olongapo | Philippines

© William Mison. All rights reserved