动画CSS文本缩进属性

要使用CSS在text-indent属性上实现动画,您可以尝试运行以下代码-

示例

<!DOCTYPE html>

<html>

   <head>

      <style>

         div {

            background-color: orange;

            border: 2px solid blue;

            animation: myanim 3s infinite;

         }

         @keyframes myanim {

            30% {

               text-indent: 120px;

            }

         }

      </style>

   </head>

   <body>

      <h1>CSS text-indent 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.

      </div>

   </body>

</html>

以上是 动画CSS文本缩进属性 的全部内容, 来源链接: utcz.com/z/347156.html

回到顶部