View Full Version : Rollover for "non-linked" images


CCSara3169
02-17-2003, 10:48 PM
is there such thing? I have a transparent Iframe and my one page with all images on it..well its kinda hard to see them. So i was just wondering if there was such thing as a mouseover to darken an "un-linked" image.

Yes, I tried a code that made the Iframe transparent, but the content solid...I didnt like it.

Krysta
02-17-2003, 10:55 PM
There is a code around that will darken the picture, but when you mouse over it it becomes full colour. Is that something you are looking for? I believe its called the nerid fade.

CCSara3169
02-17-2003, 11:25 PM
yes i've heard of that, but i think its only for a linked image

Krysta
02-17-2003, 11:34 PM
Nope, it can be used for unlinked images. I used that on my first layout for my cam image. Works wonders. I think you can find it at dynamicdrive.com. Search for nereid fade.... if you cant find it I might still have the code around somewhere..

CCSara3169
02-18-2003, 12:11 AM
nope, couldnt find it. I seached for it, no results came up

Krysta
02-18-2003, 12:25 AM
http://www.dynamicdrive.com/dynamicindex4/highlightgrad2.htm

There ya go. Hope that helps!

pb&j
02-18-2003, 03:40 AM
Don't know if this helps, but it's a regular mouseover that looks linked, but really goes nowhere when clicked on...


<a href="" onclick="window.focus(); return false;" onmouseover="document.SwapTest.src='image2.gif'" onmouseout="document.SwapTest.src='image1.gif'">

<img src="image1.gif" width="32" height="32" alt="example" border="0" name="SwapTest" id="SwapTest">

</a>

CCSara3169
02-18-2003, 09:08 PM
Tried both, LOVE both. Thank YOU!