如何使用CSS创建过渡效果?

要创建过渡效果,请设置过渡效果的属性。这样也可以设置效果的持续时间。

transition: height 5s;

您可以尝试运行以下代码来创建过渡效果

示例

<!DOCTYPE html>

<html>

   <head>

      <style>

         div {

            width: 150px;

            height: 150px;

            background: blue;

            transition: width 3s;

         }

         div:hover {

            width: 250px;

         }

      </style>

   </head>

   <body>

      <h1>Heading One</h1>

      <p>Hover over the below box to change its width.</p>

      <div></div>

   </body>

</html>

以上是 如何使用CSS创建过渡效果? 的全部内容, 来源链接: utcz.com/z/345507.html

回到顶部