ryrych / rcarousel

yet another jQuery UI carousel
http://ryrych.github.com/rcarousel/
172 stars 48 forks source link

Doesn't shows elements when carusel elements less then visible option #79

Open MicleZaitcev opened 9 years ago

MicleZaitcev commented 9 years ago

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, 
        });
    });
romuloinnocencio commented 8 years ago

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?