Results 1 to 3 of 3

Thread: Img. Thumbnail Viewer II

  1. #1
    Join Date
    Mar 2006
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Img. Thumbnail Viewer II

    Hi, what a great site! but before I attempt to use the "Image Thumbnail Viewer II" script found at http://www.dynamicdrive.com/dynamici...2.htm.....what do you need to do in order to display more than 3 images as shown in the sample script? P.S. I know absolutely nothing about DHTML! (I have 18 images that I want to use the script with). Appreciate any help! Thanks!

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Follow the pattern outlined in the demo, for the larger images, add to the array:

    Code:
    //Specify image paths and optional link (set link to "" for no link):
    var dynimages=new Array()
    dynimages[0]=["photo1.jpg", "http://www.cnn.com"]
    dynimages[1]=["photo2.jpg", "http://www.yahoo.com"]
    dynimages[2]=["photo3.jpg", "http://www.google.com"]
    dynimages[3]=["photo4.jpg", ""]
    For the thumbnails, do likewise for the markup:

    HTML Code:
    <a href="#" onMouseover="modifyimage('dynloadarea', 0)">image 1 (onmouseover)</a><br>
    <a href="#" onMouseover="modifyimage('dynloadarea', 1)">image 2 (onmouseover)</a><br>
    <a href="#" onMouseover="modifyimage('dynloadarea', 2)">image 3 (onmouseover)</a><br>
    <a href="#" onMouseover="modifyimage('dynloadarea', 3)">image 4 (onmouseover)</a><br>
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Mar 2006
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Thumbs up

    Hey....that was what I call a quick response! I'll give it a try and see if it works! If only all of life's answers came this quickly!!

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
  •