Zooming Overlay Image - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Zooming Overlay Image</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background: #f0f0f0; margin: 0; font-family: Arial, sans-serif; } .image-container { position: relative; width: 300px; height: 400px; overflow: hidden; border-radius: 20px; transition: transform 0.3s ease-in-out; } .image-container:hover { transform: scale(1.05); } .image-container img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; } .image-container .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); border-radius: 20px; display: flex; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease-in-out; } .image-container:hover .overlay { opacity: 1; } .image-container .overlay .icon { font-size: 50px; color: white; } </style> </head> <body> <div class="image-container"> <img src="https://via.placeholder.com/300x400" alt="Sample Image"> <div class="overlay"> <div class="icon">👀</div> </div> </div> </body> </html>