I am creating an effect where I hover over an image and the opacity fades to reveal underlying links to other parts of the webpage.
Here is the jQuery script:
$(document).ready(function(){
$("#columnRight,#columnRight2,#columnRight3,#columnRight4").hover(function() {
$(this).stop().animate({opacity: "0.2"}, 'slow');
},
function() {
$(this).stop().animate({opacity: "1"}, 'slow');
});
});
It targets the following HTML:
<div id="columnRight">
<a href="syllabus.html">syllabus</a>
</div>
& CSS:
#columnRight {
width: 735px;
height: 205px;
margin: 5px 10px 10px 5px;
float: left;
background: url('images/books.jpg');
}
The effect works great except for two things:
The link is visible through the image before any animation happens. I would like it to be invisible before the hover effect.
The link is inheriting the animation effect, so as I hover over the image, the link fades with the background image.
I have been working over a couple possible solutions, but thought I would ask before getting too far into either of them:
Create another div that contains the links and position it underneath the div with the background image. That way when I
.hover, it will reveal the links from below.Write another script that fades in the link as the image fades out.
.fadeTo()in place of animate if you are just changing opacity. Animating the property opacity, does just that, it manipulates only the opacity property which it not supported IE<9..fadeTo()will take care of cross browser fading. Secondly, you've provide no styling for your anchor so it's hard to understand what you mean by "link is visible". – Rob Aug 24 '12 at 14:50