動畫 CSS 字間距屬性


要透過 CSS 為 word-spacing 屬性實現動畫,可以嘗試執行以下程式碼 −

示例

即時演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            border: 2px solid blue;
            background: orange;
            animation: myanim 3s infinite;
         }
         @keyframes myanim {
            50% {
               word-spacing: 30px;
            }
         }
      </style>
   </head>
   <body>
      <h1>CSS word-spacing property</h1>
      <div>
         This is demo text! This is demo text! This is demo text! This is demo text!
         This is demo text! This is demo text! This is demo text! This is demo text!
         This is demo text! This is demo text! This is demo text! This is demo text!
         This is demo text! This is demo text! This is demo text! This is demo text!
         This is demo text! This is demo text! This is demo text! This is demo text!
      </div>
   </body>
</html>

更新時間:2020 年 6 月 12 日

95 次瀏覽

開啟你的 職業生涯

透過完成課程獲得認證

開始
廣告