css3動畫完成打字機效果

sharp_wu發表於2020-12-25

新建一個html檔案

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<body>
  <div class="box">疾風亦有歸途</div>
</body>
</html>

開始寫樣式
這裡主要是用的css3的動畫animation 的steps 步長實現的
需要注意的是,字型的大小需與每步的長度相同

    <style>
      .box {
        width: 0;
        height: 30px;
        font-size: 20px;
        overflow: hidden;
        background-color: greenyellow;
        animation: move1 2s steps(6, start) infinite forwards;
      }
      @keyframes move1 {
        0% {
        }
        100% {
          width: 120px;
        }
      }
    </style>

完整程式碼:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      .box {
        width: 0;
        height: 30px;
        font-size: 20px;
        overflow: hidden;
        background-color: greenyellow;
        animation: move 2s steps(7) infinite forwards;
      }
      @keyframes move {
        0% {
        }
        100% {
          width: 140px;
        }
      }
    </style>
  </head>
  <body>
    <div class="box">疾風亦有歸途</div>
  </body>
</html>

相關文章