<html>
<head>
<style>
.container {
position: relative;
width: 50%;
}
.image {
opacity: 1;
display: block;
width: 100%;
height: auto;
transition: .5s ease;
backface-visibility: hidden;
}
.middle {
transition: .5s ease;
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%)
}
.container:hover .image {
opacity: 0.3;
}
.container:hover .middle {
opacity: 1;
}
.text {
background-color: #4CAF50;
color: white;
font-size: 16px;
padding: 16px 32px;
}
</style>
</head>
<body>
<div class="container">
<img src="http://img.draugas.lt/forumas/veidukai/973676.gif" alt="Avatar" class="image" style="width:100%">
<div class="middle">
<div class="text">John Doe</div>
</div>
</div>
<div class="container">
<img src="http://img.draugas.lt/forumas/veidukai/973676.gif" alt="Avatar" class="image" style="width:100%">
<div class="middle">
<div class="text">John Doe</div>
</div>
</div>
</body>
</html>
My goal is to create a responsive layout with stacked images utilizing a hover effect similar to this example. However, I am facing difficulties in achieving this desired effect, especially when trying to make the images stack in two columns without stretching them during window resizing.
I have attempted using Bootstrap's container and col-lg-6 classes but have not been successful. Can someone provide guidance on how to accomplish this layout successfully?
https://i.sstatic.net/o41zCm.png
I've tried implementing various approaches, but so far, I haven't been able to achieve the desired outcome.