I have my company logo appearing in the footer of my site, when the user hovers over the footer I want the image logo.png
to fade out, then biglogo.png
to fade in - in its place.
When the user moves the cursor away from #footer I want logo.png
to fade back in.
<div id="footer">
<div id="logowrap">
<img src="images/logo.png" alt="" class="active" />
<img src="images/biglogo.png" alt="" />
</div>
</div>
I've tried so many things but dont seem to be able to get the logic right, I end up with flashing images, images that fadeout when I want them to fade in.
Any help greatfully received (I'm pulling my hair out)