uniapp swiper 구성 요소에서 슬라이딩을 비활성화하는 방법: 1. [swiper-item]에 메서드를 추가합니다. 코드는 [<swiper-item catchtouchmove="stopTouchMove">]입니다. 2. js 메서드는 false를 반환합니다. <swiper-item catchtouchmove="stopTouchMove">
이 튜토리얼의 운영 환경: windows7 시스템, uni-app2.5.1 버전, thinkpad t480 컴퓨터.
uniapp swiper 구성 요소에서 슬라이딩을 비활성화하는 방법:
swiper 구성 요소는 수평 슬라이딩 전환을 구현하고 때로는 버튼을 클릭하여 전환하고 싶을 때 수동 슬라이딩 전환을 비활성화해야 합니다. 다음 구현 방법을 사용할 수 있습니다.
wxml: swiper-item
<swiper-item catchtouchmove="stopTouchMove">
js에 메서드 추가: 메서드 구현이 false를 반환합니다
stopTouchMove: function() { return false; }
권장(무료): uni-app development tutorial
위 내용은 uniapp swiper 구성 요소에서 슬라이딩을 비활성화하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!