首頁  >  文章  >  web前端  >  在 CSS margin-top 上執行動畫

在 CSS margin-top 上執行動畫

WBOY
WBOY轉載
2023-09-11 23:13:021635瀏覽

在 CSS margin-top 上执行动画

要使用CSS在margin-top屬性上實作動畫,您可以嘗試執行以下程式碼

範例

現場示範

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            background-color: orange;
            animation: myanim 4s infinite;
            color: white;
         }
         @keyframes myanim {
            30% {
               margin-top: 30px;
            }
         }
      </style>
   </head>
   <body>
      <h2>Heading One</h2>
      <div>
         This is demo text.
      </div>
   </body>
</html>

以上是在 CSS margin-top 上執行動畫的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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