2024-05-04 css實現滑鼠移動至盒子,盒子在約定時間內進行放大縮小

技术开发-陈伟健發表於2024-05-04

放大縮小css

@keyframes scaleAnimation {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

完整程式碼:

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>css實現滑鼠移動至圖片,圖片在約定時間內進行放大縮小</title>
    <style>
      .box {
        width: 100px;
        height: 100px;
        cursor: pointer;
        transition: all 0.5s;
        margin: 100px auto 0;
        background-color: #1890ff;
      }
      .box:hover {
        animation: scaleAnimation 1s 1;
      }
      @keyframes scaleAnimation {
        0% {
          transform: scale(1);
        }

        50% {
          transform: scale(1.2);
        }

        100% {
          transform: scale(1);
        }
      }
    </style>
  </head>
  <body>
    <div class="box"></div>
  </body>
</html>

主要是使用了css3的動畫屬性,如果不需要自動放大縮小,而是hover放大,離開就縮小,那麼就不用animation,直接一個 transform: scale(2) 即可

相關文章