如何指定要在 Owl 轮播 2 中显示的项目数?
How do I specify number of items to be shown in Owl carousel 2?
在 Owl 旋转木马 1 中,我可以根据视口宽度指定要显示的不同数量的项目:
items:5,
itemsDesktop:[1199,4],
itemsDesktopSmall:[979,3],
itemsTablet:[768,2],
itemsMobile:[479,1]
但是,上面的代码不适用于 Owl carousel 2。规范还建议使用的唯一选项:
items: 3 // or any ther number here
所以在移动设备和桌面设备上显示的项目数量相同。我错过了什么吗?
尝试使用 responsive
选项。在文档中阅读此处:
https://owlcarousel2.github.io/OwlCarousel2/docs/api-options.html
在此线程中,hvsh 在底部给出了一个示例:
https://github.com/OwlCarousel2/OwlCarousel2/issues/1363
他们还在演示页面上举了一个例子:
https://owlcarousel2.github.io/OwlCarousel2/demos/responsive.html
在 Owl 旋转木马 1 中,我可以根据视口宽度指定要显示的不同数量的项目:
items:5,
itemsDesktop:[1199,4],
itemsDesktopSmall:[979,3],
itemsTablet:[768,2],
itemsMobile:[479,1]
但是,上面的代码不适用于 Owl carousel 2。规范还建议使用的唯一选项:
items: 3 // or any ther number here
所以在移动设备和桌面设备上显示的项目数量相同。我错过了什么吗?
尝试使用 responsive
选项。在文档中阅读此处:
https://owlcarousel2.github.io/OwlCarousel2/docs/api-options.html
在此线程中,hvsh 在底部给出了一个示例: https://github.com/OwlCarousel2/OwlCarousel2/issues/1363
他们还在演示页面上举了一个例子: https://owlcarousel2.github.io/OwlCarousel2/demos/responsive.html