Results 1 to 6 of 6

Thread: Blending Slide Show

  1. #1
    Join Date
    Feb 2007
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Blending Slide Show

    1) Script Title: Blending Side Show

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex14/image4.htm

    3) Describe problem: Photos aren't showing up.

    I'm not sure how to change this :

    "Inside the code, modify the HTML so the src property correctly points to the first image within the slide."

    Could someone point me in the right direction and what I need to enter in it.

    I know in one of the other scripts I have to enter the path ie. images/image1but this doesn't look the same.

    Thanks
    Newbie at this script.

  2. #2
    Join Date
    Sep 2006
    Location
    St. George, UT
    Posts
    2,769
    Thanks
    3
    Thanked 157 Times in 155 Posts

    Default

    In this part of the code:

    Code:
    <a href="javascript:gotoshow()"><img src="image1.gif" name="slide" border=0 style="filter:blendTrans(duration=3)" width=97 height=100></a>
    Simply edit image1.gif (indicated in red) to point to your first image in the slideshow. Then edit the rest of the code to point to the images (in the array below)

    Code:
    //specify images
    var slideimages=new Array("image1.gif","image2.gif","image3.gif")
    Hope this helps.
    "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
    TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design

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

    Default

    Thanks, but it didn't work.

    my link is www.briarpatchkennel.com maybe you can figure out what I did wrong?

    I changed what you said. My pictures are jpeg, but that shouldn't matter right? I changed the extensions.

  4. #4
    Join Date
    Sep 2006
    Location
    St. George, UT
    Posts
    2,769
    Thanks
    3
    Thanked 157 Times in 155 Posts

    Default

    Ok, looking at your link; and going through your source code, I have come up with this:

    this goes in the javascript (in between the <head> tags)
    Code:
    //specify images
    var slideimages=new Array("images/image1.jpg","images/image2.jpg","images/image3.jpg")
    and this goes in the body (where the slideshow begins)
    Code:
    <a href="javascript:gotoshow()"><img src="images/image1.jpg" name="slide" border=0 style="filter:blendTrans(duration=3)" width=97 height=100></a>
    That should do it.
    "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
    TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design

  5. #5
    Join Date
    Feb 2007
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thank You!

    It's working now.

    Thanks again.

  6. #6
    Join Date
    Sep 2006
    Location
    St. George, UT
    Posts
    2,769
    Thanks
    3
    Thanked 157 Times in 155 Posts

    Default

    No Problem. Let us know if you need any more help.
    "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
    TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design

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
  •