纯CSS实现打字效果(带音效)实例页面

回到相关文章 »

效果:

简易中文打字效果,作者:张鑫旭

代码:

CSS代码:
.typing {
    width: 15em;
    white-space: nowrap;
    border-right: 2px solid transparent;
    animation: typing 3.5s steps(15, end), blink-caret .75s step-end infinite;
    overflow: hidden;
}
/* 打印效果 */
@keyframes typing {
  from { width: 0; }
  to { width: 15em; }
}
/* 光标闪啊闪 */
@keyframes blink-caret {
  from, to { box-shadow: 1px 0 0 0 transparent; }
  50% { box-shadow: 1px 0 0 0; }
}
HTML代码:
<p class="typing">简易中文打字效果,作者:张鑫旭</p>