Click to See Complete Forum and Search --> : Asking a lot I know(rollovers)
invision
11-29-2003, 03:46 PM
OK people, Ive tirelessly worked on trying to get these rollovers working on my site, they're the multiple disjointed rollovers. http://www.geocities.com/shoresshire/gallery.html is the site. Basically I want to move the mouse over one of the images and it will appear in the rectangle above the four images.
Does anyone know of any free scripts that could help me?
Thanks to anyone who replies,
Michael.
gil davis
11-29-2003, 04:01 PM
<table border>
<tr>
<td colspan=4 align="center"><img name="i1" src="blank.gif" height=30></td>
</tr>
<tr>
<td><img src="allmsg.gif" onmouseover="document.i1.src=this.src" onmouseout="document.i1.src='blank.gif'"></td>
<td><img src="bookmark.gif" onmouseover="document.i1.src=this.src" onmouseout="document.i1.src='blank.gif'"></td>
<td><img src="cancel.gif" onmouseover="document.i1.src=this.src" onmouseout="document.i1.src='blank.gif'"></td>
<td><img src="chkspell.gif" onmouseover="document.i1.src=this.src" onmouseout="document.i1.src='blank.gif'"></td>
</tr>
</table>
Tested on IE 5.5 and NS 7.
invision
11-29-2003, 04:38 PM
gil thanks.
i'll test it right now.