The carousel does not turn around beautifully.
If I keep pressing right, the last image to be displayed will be the first. Then I have to click four more times, and at that moment this image will be in the very left corner of the carousel. Images are not displayed on the right side. Then all of a sudden they all appear at once. This happens when the carousel begins.

I expect the "Transition 2" frame to have "Img # 2" on the right side, etc.
I tried
- disable autorun or enable
- infinity inclusion or inclusion
- messing around with the slidesToShow settings, and zooming can help, but since I have variable-width images and a responsive design, this option only displays a small number of images on smaller screens.
- he is in the latest versions of Chrome and FF
I am using slick.js 1.5.8 with the following settings:
$("#myslick").slick({ autoplay: true, variableWidth: true });
In the following HTML (the smooth carousel is in the 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 added the following
.slick-slide { height: 100px; margin: 0 15px; }
source share