이 글에서는 주로 WeChat 애플릿의 swiper 구성 요소 사용법을 소개하고, WeChat 애플릿의 swiper 구성 요소의 기능과 사용법을 예제 형식으로 분석합니다. 또한 독자가 다운로드하여 참조할 수 있도록 전체 소스 코드도 함께 제공됩니다. 도움이 필요한 친구는 이 기사의 예를 참조할 수 있습니다
WeChat 애플릿의 스와이퍼 구성 요소 사용법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 사항은 다음과 같습니다.
뷰 컨테이너 스와이퍼에 대한 자세한 내용은 공식 문서를 참조하세요.
먼저 실행 효과를 살펴보겠습니다.
index.js :
Page({ data: { imgUrls: ['http://img02.tooopen.com/images/20150928/tooopen_sy_143912755726.jpg', 'http://img06.tooopen.com/images/20160818/tooopen_sy_175866434296.jpg', 'http://img06.tooopen.com/images/20160818/tooopen_sy_175833047715.jpg' ], indicatorDots: false, autoplay: false, interval: 5000, duration: 1000 }, changeIndicatorDots: function (e) { this.setData({ indicatorDots: !this.data.indicatorDots }) }, changeAutoplay: function (e) { this.setData({ autoplay: !this.data.autoplay }) }, intervalChange: function (e) { this.setData({ interval: e.detail.value }) }, durationChange: function (e) { this.setData({ duration: e.detail.value }) } })
index.wxml:
<swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}"> <block wx:for="{{imgUrls}}" wx:key="{{index}}"> <swiper-item> <image src="{{item}}" class="slide-image" width="355" height="150" ></image> <text class="textindex">{{index}}</text> </swiper-item> </block> </swiper> <button bindtap="changeIndicatorDots"> indicator-dots ({{indicatorDots}})</button> <button bindtap="changeAutoplay"> autoplay ({{autoplay}})</button> <slider bindchange="intervalChange" show-value min="2000" max="5000"/> interval <slider bindchange="durationChange" show-value min="1000" max="2000"/> duration
index.wxss:
.slide-image{ display: inline; } .textindex{ position: absolute; top :20px; color: red; }
위 내용은 제가 모두를 위해 정리한 내용입니다. 앞으로 모든 분들께 도움이 되기를 바랍니다.
관련 기사:
전역 메소드를 통해 Vue.use() 구성 요소를 사용하는 방법
JavaScript에서 상수 생성 정보(자세한 튜토리얼)
웹 페이지를 닫고 js에서 프롬프트를 남기는 방법 (자세한 튜토리얼)
JavaScript 문 끝에 세미콜론에 문제가 있습니다
위 내용은 WeChat 애플릿에서 스와이퍼 구성요소를 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!