rcarousel
rcarousel copied to clipboard
Doesn't shows elements when carusel elements less then visible option
When elements on carusel is less then visible option it did not shows none elements sample:
<div id="category">
<div id="categoryCarusel">
<img src="1.png">
<img src="2.png">
</div>
</div>
jQuery(document).ready(function(){
jQuery("#categoryCarusel").rcarousel({
visible: 3,
});
});
In my case, i have 10 itens e my options are:
$('#selector').rcarousel({
width: 386,
margin: 0,
height: 142,
visible: 4,
step: 1,
orientation: 'vertical'
});
but Rcarousel cut out the others 6, only show 4 =/. What can i do?