首頁 >web前端 >css教學 >CSS 動畫延遲屬性

CSS 動畫延遲屬性

WBOY
WBOY轉載
2023-08-28 11:21:06913瀏覽

CSS 动画延迟属性

使用animation-delay屬性透過CSS設定動畫開始的延遲。

您可以嘗試執行以下程式碼來實作animation-delay 屬性 -

範例

現場示範

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 150px;
            height: 200px;
            background-color: yellow;
            animation-name: myanim;
            animation-duration: 2s;
            animation-delay: 2s;
         }
         @keyframes myanim {
            from {
               background-color: green;
            }
            to {
               background-color: blue;
            }
         }
      </style>
   </head>
   <body>
      <div></div>
   </body>
</html>

以上是CSS 動畫延遲屬性的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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