欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

微信小程序 圖片寬度自適應(yīng)的實(shí)現(xiàn)

 更新時(shí)間:2017年04月06日 17:12:27   投稿:lqh  
這篇文章主要介紹了微信小程序 圖片寬度自適應(yīng)的實(shí)現(xiàn)的相關(guān)資料,需要的朋友可以參考下

 微信小程序 圖片寬度自適應(yīng)的實(shí)現(xiàn)

實(shí)例代碼:

wxml 代碼:

<swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}"> 
  <block wx:for="{{imgUrls}}" wx:key="image"> 
   <swiper-item> 
     <image src="{{item.image}}" model="aspectFit" style="width: {{imageWidth}}px;" bindload="imageLoad" /> 
   </swiper-item> 
  </block> 
</swiper> 
 

  JS 代碼:

imageLoad: function () { 
  this.setData({ 
   imageWidth: wx.getSystemInfoSync().windowWidth,//圖片寬度 
 
   imgUrls: [ 
     { image: "http://img02.tooopen.com/images/20150928/tooopen_sy_143912755726.jpg" }, 
   { image: "http://img06.tooopen.com/images/20160818/tooopen_sy_175866434296.jpg" }, 
   { image: "http://img06.tooopen.com/images/20160818/tooopen_sy_175833047715.jpg" }], 
   indicatorDots: false,//是否顯示圓點(diǎn) 
  autoplay: true,//自動(dòng)播放 
  interval: 2000,//間隔時(shí)間 
  duration: 1000//監(jiān)聽滾動(dòng)和點(diǎn)擊事件 
 }) 
} 

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

相關(guān)文章

最新評(píng)論