Gradient 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>Gradient 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; } .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: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)); 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 .text { text-align: center; color: white; } </style> </head> <body> <div class="image-container"> <img src="https://via.placeholder.com/300x400" alt="Sample Image"> <div class="overlay"> <div class="text"> <h3>Gradient Overlay</h3> <p>Hover to reveal</p> </div> </div> </div> </body> </html>