Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 23

Thread: DHTML slideshow script fade effect

  1. #11
    Join Date
    Jul 2005
    Posts
    67
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Default

    Thank you very much John. Its working great!
    Martin

  2. #12
    Join Date
    Jul 2005
    Posts
    67
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Question Go to specific image from gallery

    Hello,

    I was wondering if its possible to go to a specific image within the array as per clicked.

    Example gallery: http://www.tomalextile.com/gallery.html

    Thank you
    Last edited by martino; 01-15-2007 at 12:36 AM. Reason: wrong url

  3. #13
    Join Date
    Jul 2005
    Posts
    67
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Default

    I take it there is no way to point to a specific image within the gallery?

  4. #14
    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

    Quote Originally Posted by martino View Post
    Hello,

    I was wondering if its possible to go to a specific image within the array as per clicked.

    Example gallery: http://www.tomalextile.com/gallery.html

    Thank you
    Your example URL, goes nowhere.
    - John
    ________________________

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

  5. #15
    Join Date
    Jul 2005
    Posts
    67
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Default

    Sorry, the files needed to be re-uploaded. Its working now.

    Thanks

  6. #16
    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

    Here:

    Code:
    //Set corresponding URLs, width and height for links in a new window
    //for each of above images. Define ONLY if variable linkornot equals "1"
    photoslink[0]=["http://www.google.com/", 300, 250]
    photoslink[1]=["http://www.yahoo.com/", 500, 100]
    photoslink[2]=["http://www.dynamicdrive.com/", 375, 200]
    You would need to set the URLs to pages that you either have or that you could make that display whatever you want, including an image of your choice, links to other pages of images, anything.
    - John
    ________________________

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

  7. #17
    Join Date
    Jul 2005
    Posts
    67
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Default

    Actually, I was trying to link the thumbnail to a particular image within the array. For instance, if I clicked the 2nd thumbnail, it would open up the second image (photos[1]="images/gallery/tile1.jpg")

  8. #18
    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

    Either put the image you want on a page and link to that or put the image itself into the link array. A page will look much better in IE, other browsers can display just images in windows more gracefully, ex using just an image:

    Code:
    photoslink[0]=["photo1.jpg", 300, 250]
    You will probably want to pad the width and height by adding about 20 to what the actual width and height of the image is.

    A page is still the best bet as, the way images are rendered in new windows by browsers varies widely.
    - John
    ________________________

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

  9. #19
    Join Date
    Jul 2005
    Posts
    67
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Question

    Quote Originally Posted by jscheuer1 View Post
    Either put the image you want on a page and link to that or put the image itself into the link array. A page will look much better in IE, other browsers can display just images in windows more gracefully, ex using just an image:

    Code:
    photoslink[0]=["photo1.jpg", 300, 250]
    You will probably want to pad the width and height by adding about 20 to what the actual width and height of the image is.

    A page is still the best bet as, the way images are rendered in new windows by browsers varies widely.
    It would be great to have the Previous/Next functionality as well as the transitions intact as well. Do you think this is possible?

  10. #20
    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

    Quote Originally Posted by martino View Post
    It would be great to have the Previous/Next functionality as well as the transitions intact as well. Do you think this is possible?
    Well, there are inherent problems with new windows. They can, in theory, do that - fairly easily, in fact. The problem is that many times they are blocked or controlled by the browser in ways that you wouldn't expect.

    Just the idea of loading a series of large images into a new window slide show with transitions implies that you don't really want any visitors with a dial-up connection using it. They really won't be able to. Even users with a high speed connection, if the bandwidth dips, will have trouble. Connection speed makes no difference if the window is blocked.

    A better approach is to have the slide show be of smaller images. If you click on a particular image, you get one page or an overlay with one larger image on it.
    - John
    ________________________

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

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
  •