Log in

View Full Version : Need Thumbnail change script



itskirk
10-30-2007, 07:15 AM
I was looking for a script that would cycle through 3 or 4 thumbnails when mouse over then clicked to open up gallery

[Link removed by moderator-- not appropriate for this site.]

djr33
10-30-2007, 07:57 AM
****ographic links are simply not allowed on the board. Find another example, or describe what you want with words.

The answer is--
rollover and mouseover scripts are easily available on google. Just changing an image when the mouse rolls over is not difficult. Lots of info available.
A "gallery", where a link goes to, y'know, another page... just... a link. Not complex. It's probably setup with some sort of server side scripting to create a system, but that goes beyond the scope of your question.
Some other gallery scripts are available in the Dynamic Drive library, but I don't think that's what you want.

I'm inclined to think this may just be spam, but it won't hurt to answer now that the link is removed.

itskirk
10-30-2007, 11:14 AM
I didn't mean to post a ****o site URL it just has the effect that I want to achieve I looked at the source of the page and it looks like it is using a thumbchange.js I have had no luck finding such script and thought it wouldn't hurt to ask

djr33
10-30-2007, 11:29 AM
Rollovers are quite basic.

<img src="1.jpg"
onMouseover="if (this.src='1.jpg') { this.src='2.jpg'; } else { this.src='1.jpg'; }"
onMouseout="if (this.src='1.jpg') { this.src='2.jpg'; } else { this.src='1.jpg'; }">

Best to write that into a function, though, and you can find a LOT of various types of scripts quite easily on google. If you have a specific question about using one, go ahead and post.