• This is an outstanding plugin and works fabulously in WordPress 3.1. It also plays nicely with other plugins.

    That said, I would like to see a method of loading a “preloader” image while the rest of the slide show images are loading.

    I think what I am asking is to replace “loading.gif” with loading.jpg and then, importantly, be able to set pause time before show begins.

    Specify preloader image and time to start.

    [jj-ngg-jquery-slider preloader=”loading.jpg:3000″]

    Ideally, preloader image fades to first image in slideshow or to loading.gif, whichever occurs first.

    Rambling thoughts…

    http://wordpress.org/extend/plugins/jj-nextgen-jquery-slider/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter fwunder

    (@fwunder)

    Replying to my own rambling thoughts…

    Short code and div in post:

    [jj-ngg-jquery-slider ... afterload="function(){$('#preloader').delay(800).fadeOut(500);}"]
    
    <div id="preloader">
             <img src="./images/loader.jpg" />
    </div>

    Then define div preloader in nivo-slider.css, something like:

    #preloader {
        background:#000;
        position: absolute; z-index:500;
        width:675px;
        height:450px;
        margin-left: 160px;
        margin-top: -470px;
    }
    #preloader img {
    }

    This almost works. Actually, it does seem to work on one site, but not another. The positioning of the preloader above is a real kludge. Can’t figure out correct positioning for slider img holder.

    The thought is to quickly load an image the same size and position as the slide show images load. Image will fade to first image in slide show when all images are loaded. Loader gif could still be used but, at least, the page would “appear” complete instead of a spinning icon.

    Thanks for any input!!

    Thread Starter fwunder

    (@fwunder)

    I believe I found a much better solution than my thoughts above. It lies in a simple jquery plugin demonstrated here.

    The idea is to preload a set number of images prior to the slider beginning, in this case three (3). Images are then “loaded on demand”.

    A wonderful solution for large galleries. Now I just have to figure out how to plug it in to JJ NextGen JQuery Slider! 😉

    Thanks

    I would LOVE something like this in the next update. I hate looking at that loading icon!

    Also, every time someone makes a link to my site and shows a thumbnail, the loading icon is in it.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘[Plugin: JJ NextGen JQuery Slider] Feature Request – loading.jpg’ is closed to new replies.