I know similar questions have been answered before but I could not find exactly what I was looking for.
I'm trying to recreate the footer images on this page. I have the hover effect done already but I'm having trouble getting the images to scale to the same size as the ones on that website.
Would anybody have any ideas of how to get the images looking exactly the same?
Here's what I have in jsdfiddle (For some reason the hover effects doesn't work in jsfiddle). The code below is what I'm using for the ho
$(".img_Fade").hover(
function () {
$(this).fadeTo("slow" , 1);
},
function () {
$(this).fadeTo("slow" , .5);
}
);