Hi, On May 11, 3:51 pm, [EMAIL PROTECTED] wrote: > Hi folks > > 2 things (both related) regarding jCarousel > > Beta 0.2.0 - Am I right in asumming that the old 'itemStart' var is > not equivalent to 'start'. > If it is equivalent; this may be a bug, if it isn't; is this feature > being dropped? > > I like being able to set the start item as it allows the use of > jCarousel as navigation between different pages - lets you show > current location in the carousel (whilst still switching/reloading > page). > > Also is it possible to stop the scroll animation, but only when it's > the first scroll to the start item (itemStart) so if the carousel is > initialised; starting on an item beyond the first visible section; > there is no scroll, it just starts there? > > cheers, > steve
yes, 'start' differs from the old 'itemStart'. 'start' defines the index number of the first item that exists on initialisation. That means, if the list contains 3 items on startup and you pass 'start: 3' as option, the 3 items will get the indexes 3, 4 and 5. That lets you dynamically load items (1 and 2) before item the first existing item. If i understand you correct, you need that: http://sorgalla.com/projects/jcarousel-0.2.0-beta/examples/special_start.html Maybe i'll add a simpler solution for this, but that way will work anyway. Jan