Results 1 to 6 of 6

Thread: Image gallery Fade in and out

  1. #1
    Join Date
    Sep 2004
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Image gallery Fade in and out

    1) Script Title: Interactive image slideshow with text description

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...interslide.htm

    3) Describe problem: I'm using this now... But I want to have it so the images FADE in and OUT... Is there a way to do that ? Like this Script: http://www.dynamicdrive.com/dynamici...nslideshow.htm

    Thanks Lee

  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

    I suppose that might be able to be done but, the functionality of Interactive Image slideshow and the fading method used in Ultimate Fade-in slideshow would be hard to combine, perhaps impossible. I've been fooling around for awhile with an update to Interactive Image slideshow. It is highly modular and can have fading in IE 6+. Here is a demo:

    http://home.comcast.net/~jscheuer1/s...opcity_hvr.htm

    It has three slide shows that show off almost all of the modules available with this update. Most modules can be mixed and matched as desired and are all documented in the source code.
    - John
    ________________________

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

  3. #3
    Join Date
    Sep 2004
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    The first one is the one i want.
    Is there a way to isolate the code on that page and make it usefull ?
    -lee

  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

    Quote Originally Posted by Lee View Post
    The first one is the one i want.
    Is there a way to isolate the code on that page and make it usefull ?
    -lee
    Sorry you don't find it useful

    Anyways, that is actually a link to a project that I have in development. In fact, I just uploaded a newer version with minor improvements. The version you were looking at was an upgrade from the one that it was when I posted the link.

    see:

    http://www.dynamicdrive.com/forums/s...ad.php?t=15903

    particularly post #'s 3 & 5 for info on how to configure it (the source code is well documented too so, consult that as well).

    If this is all still too mystifying for you, unless you have a specific question, wait until it is included in the DD scripts library, which should be fairly soon but, since I do not run that nor have any official connection to DD, I cannot say for sure.
    - John
    ________________________

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

  5. #5
    Join Date
    Sep 2004
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    ok I kind of got it working.
    www.norbarfabrics.com/newsitever2
    Have a lot of extra code, and I have to work out the IFRAME size in IE.

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

    I tried fixing up your code but, it was so bad that I gave up. I can tell you some things that will get you headed in the right direction. Only one head and one body allowed per page. HTML tags, unless part of scripts (between <script> and </script> tags), and then only sometimes, should otherwise never be in the head. There is generally no use calling a function twice on a page in the same way and certainly not before the function you are calling is established. Having empty script tags:

    HTML Code:
    <script type="text/javascript"> </script>
    serves no purpose. Having empty markup like:

    HTML Code:
    <tr><td></td></tr>
    or:

    HTML Code:
    <p></p>
    will add spacing and/or height and/or width to your page that is sometimes not desired.

    Finally, so many things in HTML affect one another that, it is best to use the simplest code possible, if for no other reason than to avoid confusion. If something doesn't look right, your first thought should be, "What can I take away to fix this?" not, "What can I add?"
    - 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
  •