I want to create a photo gallery type, but it is the following, inside a <div>
are several photos that, even if they are not the same size, will be shown the same size (and a smaller size so that all fit on the screen )!
By hovering over the images, they would increase to their actual size. I tried using the following code:
-webkit-transform: scale(1.3);
-ms-transform: scale(1.3);
transform: scale(1.3);
But the problem is that with this, the image is "blurred". I wanted this same effect (or similar effect), but without losing the quality of the image. Does anyone know how I do this?