📅  最后修改于: 2022-03-11 14:57:49.858000             🧑  作者: Mango
import { Component, ViewChild } from '@angular/core';
import { Slides } from 'ionic-angular';
@Component({
selector: 'page',
templateUrl: 'page.html'
})
export class Page{
@ViewChild(Slides) slides: Slides;
contructor() {
this.slides.lockSwipes(true);
}
nextSlide(){
this.slides.lockSwipes(false);
this.slides.slideNext();
this.slides.lockSwipes(true);
}
}