Results 1 to 5 of 5

Thread: FrogJS move without clicking thumbs

  1. #1
    Join Date
    Mar 2007
    Posts
    66
    Thanks
    7
    Thanked 0 Times in 0 Posts

    Default FrogJS move without clicking thumbs

    1) Script Title: FrogJS

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

    3) Describe problem: Is these a way to make this move without clicking on the thumbs? With a 2 second pause when the image reaches it's largest size?

    Thank you .... viki

  2. #2
    Join Date
    Jun 2007
    Posts
    543
    Thanks
    3
    Thanked 78 Times in 78 Posts
    Blog Entries
    1

    Default

    i haven't looked at the code, but wherever it says onclick replace it with onmouseover.
    [Jasme Library (Javascript Motion Effects)] My Site
    /\/\@§†ê® §©®¡þ† /\/\@|{ê®
    There are 10 kinds of people in the world, those that understand binary and those that don't.

  3. The Following User Says Thank You to Master_script_maker For This Useful Post:

    vkbarefoot (02-27-2008)

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

    If a mouseover controlled gallery is what you want, that could work out, but it will be tricky to modify, as events (currently click events) are added and removed as Frog progresses, and this would need to be reflected in the change to mouseover. However, I get the impression that you want an automatic gallery that changes its images without any user input, is this so?
    - 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:

    vkbarefoot (02-27-2008)

  6. #4
    Join Date
    Mar 2007
    Posts
    66
    Thanks
    7
    Thanked 0 Times in 0 Posts

    Default

    yes - I would like it to continue without human input

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

    Use the modified attached frog.js (in frog.zip linked below) script (note added configuration variables):

    Code:
    //-------------------------------------------------------------
    //  FrogJS v.1.1
    //  Created by Eric Puidokas (www.puidokas.com)
    //
    //  Licensed under the Creative Commons Attribution 2.5 License
    //  (http://creativecommons.org/licenses/by/2.5/)
    //  Modified 27/Feb/2008 10:43 for auto-run by jscheuer1
    //  in http://www.dynamicdrive.com/forums/
    //-------------------------------------------------------------
    
    // CONFIGURATION VARIABLES
    var thumbTop = '60px'; // distance you want you thumbnails to be from the top of their container
    var loadingAni = 'images/loading.gif'; // image displayed when preloading images
    var scalePercent = '300'; // percent thumbnails expand when fading into main image
    var mouseoverpause = true; // set true to allow full user interaction onmouseover, false for limited-interactive gallery
    // Note - Gallery will pause onmouseover of the main image area (for longer viewing, linked main images, if any)
    // regardless of the above setting.
    var nopause = false; // set to true only for a completely non-interactive gallery, otherwise use false.
    // nopause, if true overrides mouseoverpause and any linked main images.
    
    // GLOBALS
    var imageArray = n . . .
    Attachment 1650
    - 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
  •