隐藏旋转木马的小显示<340 x

hiding carousel for small display < 340 x

本文关键字:显示 旋转木马 隐藏      更新时间:2023-09-26

请寻找一种方法来隐藏carousel脚本,使其不显示尺寸为:340x360的屏幕。下面是脚本:http://owlgraphic.com/owlcarousel/#customizing

Thanks in advance

updated:

使用CSS媒体查询

@media (max-width: 360px) {
   #slider_wrapper {
      display: none;
   }
}