[jQuery] Image Overlay w/Options

[jQuery] Image Overlay w/Options


Hello,
How can I make it so when I hover over an image, it turns transparent. After
it does this, there are two icons on the image, each hyperlinked.
I can't seem to find a way to get an overlay with links on my script.
http://www.infrontdashboard.com/sitebuilder/templates/*Real%20Estate/RE-1B/preview.gif
^ The image
http://famfamfam.com/lab/icons/silk/icons/camera.png
http://famfamfam.com/lab/icons/silk/icons/picture_add.png
^ The icons
$(document).ready(function() {
    $('#templatepics img').mouseover(function() {
        $(this).fadeTo(200, 0.3);
    }).mouseout(function() {
        $(this).fadeTo(200, 1.0);
    });
});
^ What I've got so far.
Thanks!
Anthony
--
View this message in context: http://www.nabble.com/Image-Overlay-w-Options-tf4650315s27240.html#a13285732
Sent from the jQuery General Discussion mailing list archive at Nabble.com.






















    • Topic Participants

    • glen