As I hover over the Left Image, it appears to go behind the second (right) image.
I am looking for a way that when I hover over the first image, it will slide on top of the Right Image, and vice versa for the Left side Image.
You can see what I have tried so far in this Fiddle.
Take a look at my Screen here
Does anyone know how to achieve this effect?
.view-fifths:hover img {
-webkit-transform: translateX(-300px);
-moz-transform: translateX(-300px);
-o-transform: translateX(-300px);
-ms-transform: translateX(-300px);
transform: translateX(-300px);
}