动画 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 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告