Results 1 to 2 of 2

Thread: Simple Gallery stop on last slide

  1. #1
    Join Date
    Mar 2007
    Location
    Michigan
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Simple Gallery stop on last slide

    Is there a way to stop the simplegallery on the last slide?

  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

    It already may stop on the first slide after 1 or more rotations, just set the autoplay cycles, ex:

    Code:
    var mygallery=new simpleGallery({
    wrapperid: "simplegallery1", //ID of main gallery container,
    dimensions: [250, 180], //width/height of gallery in pixels. Should reflect dimensions of the images exactly
    imagearray: [
    ["pool.jpg", "http://en.wikipedia.org/wiki/Summer", "_new", ""],
    ["cave.jpg", "http://en.wikipedia.org/wiki/Winter", "", ""],
    ["fruits.jpg", "", "", ""],
    ["autumn.jpg", "", "", ""]
    ],
     autoplay: [true, 2500, 1], //[auto_play_boolean, delay_btw_slide_millisec, cycles_before_stopping_int]
    persist: false,
    fadeduration: 500, //transition duration (milliseconds)
    oninit:function(){ //event that fires when gallery has initialized/ ready to run
    //Keyword "this": references current gallery instance (ie: try this.navigate("play/pause")
    },
    onslide:function(curslide, i){ //event that fires after each slide is shown
    //Keyword "this": references current gallery instance
    //curslide: returns DOM reference to current slide's DIV (ie: try alert(curslide.innerHTML)
    //i: integer reflecting current image within collection being shown (0=1st image, 1=2nd etc)
    }
    })
    Make your first slide the one that you want it to stop on.

    Or if it really must stop on the last slide, use:

    Code:
    	onslide:function(curslide, i){ //event that fires after each slide is shown
    		//Keyword "this": references current gallery instance
    		//curslide: returns DOM reference to current slide's DIV (ie: try alert(curslide.innerHTML)
    		//i: integer reflecting current image within collection being shown (0=1st image, 1=2nd etc)
    		if(i == this.setting.imagearray.length - 1){
    			this.navigate('playpause');
    			this.setting.onslide = function(){return;};
    		}
    	}
    for the onslide function.
    Last edited by jscheuer1; 04-22-2009 at 05:55 AM. Reason: correction
    - 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
  •