css CSS:打字机效果

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css CSS:打字机效果相关的知识,希望对你有一定的参考价值。

<div class="typewriter">
  <h1>some example text for ya</h1>
</div>
.typewriter h1 {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .15em solid orange; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: .15em; /* Adjust as needed */
  animation: 
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}

以上是关于css CSS:打字机效果的主要内容,如果未能解决你的问题,请参考以下文章

实战用CSS实现文本打字机效果

css 自动打字效果的实现

js+css模仿打字效果

CSS打字效果

JS+CSS实现CodePen首页多行打字机动画,最通俗易懂版本

CSS3自动打字动画,让你的文字动起来!