gpt4 book ai didi

angular - 如何使滑动 slider 在 Angular 上响应

转载 作者:太空狗 更新时间:2023-10-29 17:49:03 26 4
gpt4 key购买 nike

我的 Angular 项目中有一个滑动 slider 。它在桌面 View 中有 4 个项目。我想要移动 View 中的 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
};

最佳答案

您可以将断点属性添加到配置 JSON 中:

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

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

关于angular - 如何使滑动 slider 在 Angular 上响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54686902/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com