设置过渡效果的 CSS 属性的名称


要设置过渡效果的 CSS 属性的名称,请使用 CSS transition-property。

在以下示例中,我们已将属性设置为 width,并设置了 duration

示例

实时演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 150px;
            height: 150px;
            background: blue;
            transition-property: width;
            transition-duration: 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>

更新于:2020 年 6 月 24 日

78 次浏览

开启你的职业生涯

通过完成课程获得认证

开始学习
广告