在 CSS 的 letter-spacing 屬性上執行動畫


要使用 CSS 在 letter-spacing 屬性上實現動畫,你可以嘗試執行以下程式碼

示例

線上演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         p {
            letter-spacing: 3px;
            animation: mymove 3s infinite;
         }
         @keyframes mymove {
            70% {
               letter-spacing: 20px;
            }
         }
      </style>
   </head>
   <body>
      <p>I am flying!</p>
   </body>
</html>

更新於: 25-6-2020

125 瀏覽次數

開啟你的職業生涯

完成課程,獲得認證

開始
廣告
© . All rights reserved.