因为 angular 不熟,最近在批改一个 NG-ZORRO 的我的项目。
期间为了引入 swiper,依照网上的装置引入形式(这步就不说了,应该都能搜到),引入后发现 autoplay 怎么设置都没成果,试了很多方法,前面去 swiperjs 官网看了才发现这段话。
好家伙!!这么根底的性能也要导入么
import {Swiper, Autoplay} from 'swiper';
Swiper.use([Autoplay]);
export class TestComponent {
swiper: Swiper;
constructor(){}
ngAfterViewInit() {
this.swiper = new Swiper('.swiper-container', {
slidesPerView: 3,
initialSlide :1,
centeredSlides: true,
loop: true,
observer: true,
observeParents: true,
autoplay:{
delay:2000,
disableOnInteraction:false,
stopOnLastSlide: false,
},
});
}
}
完结出工!_(:з」∠)_