The carousel doesn't wrap-around nicely.
If I keep clicking right, the last image that will show will be the very first one. Then I have to click four more times, at which point this image will be at the very left of the carousel. No images are shown on the right side. Then all of the sudden they all appear at once. This happens when the carousel starts over.
I'd expect that the "Transition 2" frame would have "Img #2" on the right side, and so on.
I've tried
- turning autoplay setting off or on
- turning infinity setting off or on
- fiddling with the slidesToShow setting, and increasing it can help, but since I have variable width images and a responsive design, this setting will show only a small amount of images on smaller screens
- it in latest Chrome and FF
I'm using slick.js 1.5.8 with the following settings:
$("#myslick").slick({
autoplay: true,
variableWidth: true
});
With the following HTML (the slick carousel is within a Bootstrap 3 container):
<div class="container">
<div id="myslick">
a few <img> tags with variable dimensions
</div>
</div>
I use the included CSS theme files, but have added the following
.slick-slide {
height: 100px;
margin: 0 15px;
}