Bangladesh Smart Card | Zoom Image html/css

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Image Zoom</title>
  <style>
    .zoom-container {
      width: 300px;
      overflow: hidden; /* hides overflow on zoom */
    }

    .zoom-container img {
      width: 100%;
      transition: transform 0.3s ease;
    }

    .zoom-container:hover img {
      transform: scale(1.2); /* zooms in the image */
    }
  </style>
</head>
<body>

  <div class="zoom-container">
    <img src="https://via.placeholder.com/Zoom-Url" alt="Zoomable Image">
  </div>

</body>
</html>

Post a Comment

0 Comments