動畫底部 CSS 屬性


要實現使用 CSS 對底部屬性進行動畫處理,可以嘗試執行以下程式碼

示例

線上演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 200px;
            height: 300px;
            background: yellow;
            border: 10px solid red;
            animation: myanim 3s infinite;
            bottom: 30px;
            position: absolute;
         }
         @keyframes myanim {
            20% {
               bottom: 100px;
            }
         }
      </style>
   </head>
   <body>
      <h2>Performing Animation for bottom property</h2>
      <div></div>
   </body>
</html>

更新日期:25-Jun-2020

1K+ 瀏覽量

啟動你的職業生涯

完成課程,獲得認證

開始入門
廣告
© . All rights reserved.