Results 1 to 4 of 4

Thread: Need Thumbnail change script

  1. #1
    Join Date
    Oct 2007
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Need Thumbnail change script

    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.]
    Last edited by djr33; 10-30-2007 at 07:49 AM. Reason: content

  2. #2
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    ****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.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  3. #3
    Join Date
    Oct 2007
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    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

  4. #4
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    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.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •