如何使滑动滑块响应角度

时间:2019-02-14 09:20:14

标签: angular typescript slider angular6 swiper

我的角度项目中有一个滑动滑块。 在桌面视图中有4个项目。我希望在移动设备视图中有1个项目。检查此链接

https://stackblitz.com/edit/ngx-swiper-wrapper-demo-h9egdh?file=app/app.component.ts

此处显示演示.ts代码

public slides = [
    'First slide',
    'Second slide',
    'Third slide',
    'Fourth slide',
    'Fifth slide',
    'Sixth slide'
  ];

  public type: string = 'component';

  public disabled: boolean = false;

  public config: SwiperConfigInterface = {
    direction: 'horizontal',
    slidesPerView: 4,
    keyboard: true,
    mousewheel: true,
    scrollbar: false,
    navigation: true,
    pagination: false
  };

1 个答案:

答案 0 :(得分:2)

您可以将断点属性添加到配置JSON中,如下所示:

get()

断点可以是您需要的任何大小,有关更多信息,您可以检查: https://github.com/nolimits4web/Swiper/blob/master/demos/380-responsive-breakpoints.html