在 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>

更新於: 2020 年 6 月 25 日

1K+ 瀏覽量

開啟你的 職業生涯

透過完成課程獲得認證

開始吧
廣告