首頁  >  文章  >  web前端  >  設定 CSS 過渡效果需要多少秒或毫秒才能完成

設定 CSS 過渡效果需要多少秒或毫秒才能完成

WBOY
WBOY轉載
2023-09-15 22:49:021034瀏覽

设置 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>

以上是設定 CSS 過渡效果需要多少秒或毫秒才能完成的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除