I need to do in my web site collection of images and when hover opacity has to change with small icon for zoom
And when clicking on plus icon, I need to have image in big format
Please, Do you know how to change this code to have this result
this is my code for images side by side
<section class="py-5" style="padding:0px !important;">
<div class="container-fluid " >
<div class="row " >
<div class="col-md-4 col-sm-6" style="padding: 0px !important;width:50px;height: 350px">
<img class="img-fluid " src="img1.png" alt="" style="width:100%;height: 100%">
</div>
<div class="col-md-4 col-sm-6" style="padding: 0px !important;width:50px;height: 350px">
<img class="img-fluid " src="img2.png" alt="" style="width:100%;height: 100%" >
</div>
<div class="col-md-4 col-sm-6" style="padding: 0px !important;width:50px;height: 350px">
<img class="img-fluid " src="img3.png" alt="" style="width:100%;height: 100%" >
</div>
<div class="col-md-4 col-sm-6" style="padding: 0px !important;width:50px;height: 350px">
<img class="img-fluid " src="img4.png" alt="" style="width:100%;height: 100%">
</div>
<div class="col-md-4 col-sm-6" style="padding: 0px !important;width:50px;height: 350px">
<img class="img-fluid " src="img5.png" alt="" style="width:100%;height: 100%">
</div>
<div class="col-md-4 col-sm-6" style="padding: 0px !important;width:50px;height: 350px">
<img class="img-fluid " src="img6.png" alt="" style="width:100%;height: 100%">
</div>
</div>
</div>
</section>