设置CSS宽度属性的动画

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

示例

<!DOCTYPE html>

<html>

   <head>

      <style>

         div {

            width: 300px;

            height: 250px;

            background-color: maroon;

            color: white;

            animation: myanim 3s;

         }

         @keyframes myanim {

            30% {

               width: 500px;

            }

         }

      </style>

   </head>

   <body>

      <h1>CSS width property</h1>

      <div>

         <h1>This is demo text!</h1>

      </div>

   </body>

</html>

以上是 设置CSS宽度属性的动画 的全部内容, 来源链接: utcz.com/z/316366.html

回到顶部