tags:

views:

22

answers:

2

Hi ,

Am using this

jquery plugin

How to change the click mode to automatically run mode ,

Present scenario , When u click NEXt it show the next three image,

When u click BACK It shows the previous three images ,

I want to change this scenario to

Whe loads , the plugin should start running(image) , Also i need the NEXT and BCK button , When user click the back button , then it show show previous three image and run image toward back,

Is it possible in this ?

Thanks

+1  A: 

If you take a look at some of the other examples, you'll notice: Carousel with autoscrolling.

Nathan Taylor
A: 
// Uncomment the following option if you want items
    // which are outside the visible range to be removed
    // from the DOM.
    // Useful for carousels with MANY items.
    auto: 1,
   // wrap: 'last',
   wrap: 'circular',
    //easing: 'BounceEaseOut',
   // vertical: true,
    animation: 2500,
    visible: 3,
    speed:1000 , 
    wrap: 'circular',

    // itemVisibleOutCallback: {onAfterAnimation: function(carousel, item, i, state, evt) { carousel.remove(i); }},
    itemLoadCallback: mycarousel_itemLoadCallback

this fixed my probs...

Bharanikumar