The page made two slider http://strdv.inetech.ru/. Both sliders display items from the same directory. Is there any way to make the second slider start scrolling from another point, take points starting from a different number or in random order, that is, to make different pictures turn around in the sliders?
2 answers
Can:
jQuery('#mycarousel').jcarousel({ start: 3 });
The website carousel has documentation with examples.
Well, next time indicate what kind of slider you use.
- yeah thanks) - Heidel
|
<!-- Первый слайдер --> jQuery('#mycarousel_1').jcarousel({ start: 1, auto: 2, wrap: "circular", scroll: 1, visible: 4, animation: 5000, initCallback: mycarousel_initCallback }); <!-- Второй слайдер --> jQuery('#mycarousel_2').jcarousel({ start: 4, auto: 2, wrap: "circular", scroll: 1, visible: 4, animation: 5000, initCallback: mycarousel_initCallback });
- yeah thanks) - Heidel
|