Slide In Text 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>Slide-in Text Image</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background: #fafafa; 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 .info { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); color: white; display: flex; justify-content: center; align-items: center; text-align: center; transition: left 0.3s ease-in-out; } .image-container:hover .info { left: 0; } </style> </head> <body> <div class="image-container"> <img src="https://via.placeholder.com/300x400" alt="Sample Image"> <div class="info"> <div> <h3>Sliding Text</h3> <p>Text slides in from the left</p> </div> </div> </div> </body> </html>