设置 CSS 过渡效果完成所需的时间(秒或毫秒)


在 CSS 中使用 transition-duration 属性设置 CSS 过渡效果完成所需的时间(秒或毫秒)−

示例

在线演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 150px;
            height: 150px;
            background: blue;
            transition-property: height;
            transition-duration: 2s;
         }
         div:hover {
            height: 200px;
         }
      </style>
   </head>
   <body>
      <h1>Heading One</h1>
      <p>Hover over the below box to change its height.</p>
      <div></div>
   </body>
</html>

更新于: 02-7 月-2020

217 次浏览

启动你的 事业

完成课程后,获取认证

开始
广告