国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > JavaScript > 正文

微信小程序 swiper組件詳解及實(shí)例代碼

2019-11-20 08:40:22
字體:
供稿:網(wǎng)友

微信小程序 swiper組件

常用屬性:

效果圖:

 swiper.wxml添加代碼:

<swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}} " bindchange="bindchangeTag"> <block wx:for="{{imgUrls}}">  <swiper-item>   <image src="{{item}}" class="slide-image"/>  </swiper-item> </block></swiper><button bindtap="changeIndicatorDots"> 是否顯示面板指示點(diǎn) </button><button bindtap="changeAutoplay"> 是否自動(dòng)切換 </button><slider bindchange="intervalChange" show-value min="1000" max="2000"/> 自動(dòng)切換時(shí)間間隔<slider bindchange="durationChange" show-value min="1800" max="10000"/> 滑動(dòng)動(dòng)畫時(shí)長(zhǎng)

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: 1000,  duration: 1800 }, //是否顯示面板指示點(diǎn) changeIndicatorDots: function(e) {  this.setData({   indicatorDots: !this.data.indicatorDots  }) }, //是否自動(dòng)切換 changeAutoplay: function(e) {  this.setData({   autoplay: !this.data.autoplay  }) }, //自動(dòng)切換時(shí)間間隔 intervalChange: function(e) {  this.setData({   // e.detail.value獲取slider的值   interval: e.detail.value  }) }, //滑動(dòng)動(dòng)畫時(shí)長(zhǎng) durationChange: function(e) {  this.setData({   duration: e.detail.value  }) }, //當(dāng)頁(yè)面改變是會(huì)觸發(fā) bindchangeTag:function(e){  console.log("bindchangeTag...") },  onLoad:function(options){  // 頁(yè)面初始化 options為頁(yè)面跳轉(zhuǎn)所帶來的參數(shù) }, onReady:function(){  // 頁(yè)面渲染完成 }, onShow:function(){  // 頁(yè)面顯示 }, onHide:function(){  // 頁(yè)面隱藏 }, onUnload:function(){  // 頁(yè)面關(guān)閉 }})

css:

.slide-image{  width: 100%;  height: 160px;}

 感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 乌拉特后旗| 江都市| 安庆市| 盐城市| 成都市| 基隆市| 开远市| 平潭县| 高邮市| 方正县| 陕西省| 本溪| 陇西县| 娱乐| 临西县| 漾濞| 云阳县| 监利县| 泰安市| 运城市| 乌拉特前旗| 隆化县| 高雄市| 九江县| 山西省| 铜梁县| 方城县| 云浮市| 温泉县| 馆陶县| 伊通| 武宣县| 饶河县| 靖宇县| 东辽县| 马关县| 平定县| 凉城县| 延安市| 万源市| 谷城县|