<!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>
0 Comments