Results 1 to 4 of 4

Thread: Ultimate Fade-in slide show, help needed

  1. #1
    Join Date
    Dec 2008
    Posts
    3
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Ultimate Fade-in slide show, help needed

    1) Script Title:
    Ultimate Fade-in slideshow (v1.51)
    2) Script URL (on DD):
    http://www.dynamicdrive.com/dynamici...nslideshow.htm
    3) Describe problem:
    I have multiple slide shows on one of my web pages and do not have "mouse over pause" enabled. My question is this: How do I make the slide show photos not selectable? When the cursor moves over some of the photos on the template page most of the photos are selectable (opens a new page), but one is not...How do I make my photos present like the man & woman kissing?

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Here:
    Code:
    fadeimages[2]=["photo3.jpg", "http://www.javascriptkit.com", "_new"] //image
    Remove the highlighted.
    (That's just an example, you should do that to every fadeimages array.
    Jeremy | jfein.net

  3. #3
    Join Date
    Dec 2008
    Posts
    3
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Oh, thank you! That was simple - Could you explain what the difference between "image with link syntax" and "image with link and target syntax" is?

    Total beginner here - thank you!!

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

    With target specifies a target attribute for the link (in HTML - where the target attribute specifies where the link should open - links without targets open in the default target for the page, usually the same window).

    In more detail, anything after an unquoted:

    Code:
    //
    on any line is just a comment/explanation/instructions.

    If you already knew that, my apologies.

    Now, the array structure is multidimensional, meaning that each array item is itself an array. The bare minimum data for that nested array (highlighted) is the image to show (red), comments will be green in all code blocks that follow:

    Code:
    fadeimages[0]=["photo1.jpg", "", ""] //plain image syntax
    If you wanted a link (blue) for that image - say, some.htm in the same folder as the page:

    Code:
    fadeimages[0]=["photo1.jpg", "some.htm", ""] //image with link syntax
    If you wanted to target (magenta) that link to a new window:

    Code:
    fadeimages[0]=["photo1.jpg", "some.htm", "_new"] //image with link and target syntax
    Note: Comments are not required for the script to work. The browser ignores them. They are just there as aids (signposts) for both the end user designer (you in this case) and the developer(s) (author(s) and/or people modifying the basic code beyond just configuring it) of the script.
    Last edited by jscheuer1; 12-28-2008 at 06:01 AM. Reason: agreement between text and code for hypothetical link's page name
    - John
    ________________________

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

  5. The Following User Says Thank You to jscheuer1 For This Useful Post:

    New Dreamweaver User (12-23-2008)

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
  •