New here and in need of help!

Quirk

New Member
Hi, I am a graphic design student. I'll be graduating soon, and I am making a web site for my work. I an idea of how I may have one of the pages may look, but the script is all screwy. It is a show/hide content java script that I modified some to get each thumbnail to show on rollover and hide on roll off. The problem is, the viewer would have to wait until the image is fully visible before it will work for the image to hide when they roll off. This is creating problems. That is just the beginning, it only remotely works in internet explorer.

Could someone help me figure out what is going on, or if there is a different script I should be using? It would be greatly appreciated.

the page is www.elladurham.com/graphics.html


And, as for being new, I am looking forward to meeting you guys, I'm sure I'll be on here quite a bit since I just now am starting web design, and I hope I'll be able to make my contribution on the board.
 

scootergrisen

New Member
Maby you need to preload the images...

something like this in javascript

preload_image = new Image();
preload_image.src="http://mydomain.com/image.gif";

do that for every picture;
i dont know if that helps but you can try and search on google for things like "javascript preload images".
 
Top