Lemon Squash
01-26-2003, 09:36 PM
Go here (http://www.sitepros.net/kenshin/) and go to the bottom of the page and put your mouse over one of the links right at the bottom and the pic to the left changes, hows it done? =/
|
View Full Version : How do you do this? Lemon Squash 01-26-2003, 09:36 PM Go here (http://www.sitepros.net/kenshin/) and go to the bottom of the page and put your mouse over one of the links right at the bottom and the pic to the left changes, hows it done? =/ pb&j 01-27-2003, 06:54 AM The image code itself has a NAME property in it such as... name="imagesname" Then its a simple link mouseover thing. In the link coding there is... onmouseout="document.imagesname.src=images0.src" onmouseover="document.imagesname.src=images1.src" The onmouseover part states to change the image containing the name "imagesname" to the following image. The onmouseout part states to change the image containing the name "imagesname" to the following image (which happens to be the original image). And so forth for each of the links. Lemon Squash 01-27-2003, 02:30 PM It sounds a little confusing but ill have a go at it... :D |