专属客服18376668806 在线咨询 留言/需求提交

前端特效丨一行代码教你写打字机效果




  1. <!DOCTYPE html>

  2. <html lang="en">

  3. <head>

  4.    <meta charset="UTF-8">

  5.    <title>Document</title>

  6.    <style>

  7.        @keyframes typing { from { width: 0; } }

  8.        @keyframes blink-caret { 50% { border-color: transparent; } }

  9.        h1 {

  10.            font: bold 200% Consolas, Monaco, monospace;

  11.            border-right: .1em solid;

  12.            width: 16.5em; /* fallback */

  13.            /* width: 30ch; # of chars */

  14.            margin: 2em 1em;

  15.            white-space: nowrap;

  16.            overflow: hidden;

  17.            animation: typing 20s steps(30, end), /* # of steps = # of chars */

  18.            blink-caret .5s step-end infinite alternate;

  19.        }

  20.    </style>

  21. </head>

  22. <body>

  23. <h1>Typing animation by Lea Verou.</h1>

  24. </body>

  25. </html>

+


关注“网页设计自学平台订阅号回复以下关键字


|dw教程|js教程|淘宝案例|软件下载|搜狐案例|网站模板


戳“阅读原文”入群免费领取前端开发教程