| Well, now that you know how to do rollovers, we can do something a little fancier. Let's do a little image switching.
onMouseover="document.bird.src=pic1.src"
onMouseout="bird.src='bird.gif'"Notice that even though the link is around the baby picture, you can refer to the bird picture with the onMouseover and onMouseout.
onMouseover="document.bird.src=pic1.src;
document.baby.src=pic2.src"If you put two references in the quotes, the onMouseover will do both at once! Just be sure to separate them with a semi-colon.
That's it! Now only your imagination can limit you.
|