📜  Ionic 2 - 如何通过滑动手势防止离子幻灯片上的页面更改? - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:49.858000             🧑  作者: Mango

代码示例1
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);
  }
}