动画CSS margin-left属性

要在CSS中的margin-left属性上实现动画,您可以尝试运行以下代码

示例

<!DOCTYPE html>

<html>

   <head>

      <style>

         div {

            background-color: gray;

            animation: myanim 3s infinite;

            color: white;

         }

         @keyframes myanim {

            30% {

               margin-left: 20px;

            }

         }

      </style>

   </head>

   <body>

      <h2>Heading One</h2>

      <div>

         This is demo text.

      </div>

   </body>

</html>

以上是 动画CSS margin-left属性 的全部内容, 来源链接: utcz.com/z/316355.html

回到顶部