纯CSS实现简单的打字效果

首先是css

.print {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    -webkit-animation: dy 3s steps(60, end) infinite;
    animation: dy 3s steps(50, end) infinite;
}

@-webkit-keyframes dy {
    from {
        width: 0;
    }
}

@keyframes dy {
    from {
        width: 0;
    }
}

接着是html一个P标签

<p class="print">只需要几行代码就可以实现简单的打字效果哦~怎么样,好玩吗~</p> 

猜你喜欢

转载自blog.csdn.net/weixin_42815982/article/details/81807245