Help finding this add-on

Its the styles that remove those arrows, whatever I changed in them. The default look has the arrows.
Ah it looks nice on your site(that's the showcase add-on right)?
I like the way it looks but not quite what i was looking for. I want something
that sort of moves on it's own.
 
Ah it looks nice on your site(that's the showcase add-on right)?
I like the way it looks but not quite what i was looking for. I want something
that sort of moves on it's own.

The sliders have the option of autoControls (moving on their own with configurable speed and pausing). I don't support it, but its a feature of the slider js. I have the autoslide running on my development instance. All you need to do is uncomment out the 3 auto control options. The "pause" controls the time in micro seconds between slides.

HTML:
        $('.sliderNodeListItems').bxSlider({
            //auto: true,
            //autoControls: true,
            //pause: 3000, 
         
            slideWidth: 234,
            minSlides: 1,
            maxSlides: 4,
            moveSlides: 2,
            slideMargin: 10
        });
 
The sliders have the option of autoControls (moving on their own with configurable speed and pausing). I don't support it, but its a feature of the slider js. I have the autoslide running on my development instance. All you need to do is uncomment out the 3 auto control options. The "pause" controls the time in micro seconds between slides.

HTML:
        $('.sliderNodeListItems').bxSlider({
            //auto: true,
            //autoControls: true,
            //pause: 3000,
        
            slideWidth: 234,
            minSlides: 1,
            maxSlides: 4,
            moveSlides: 2,
            slideMargin: 10
        });

Ahh okay :) thanks!
 
Back
Top Bottom