Open
Description
The ability to set the number of slides to show for different widths
document.addEventListener('DOMContentLoaded', function () {
var multiSlides = document.querySelector('.js_multislides');
lory(multiSlides, {
infinite: 4,
slidesToScroll: 4
breakpoints[
{
width:600px,
slidesToShow:3
},
{
width:320px,
slidesToShow:1,
slidesToScroll:1
}]
});
});