欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

微信小程序 图片宽度自适应的实现

程序员文章站 2023-11-07 15:04:58
 微信小程序 图片宽度自适应的实现 实例代码: wxml 代码:

 微信小程序 图片宽度自适应的实现

实例代码:

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,//是否显示圆点 
  autoplay: true,//自动播放 
  interval: 2000,//间隔时间 
  duration: 1000//监听滚动和点击事件 
 }) 
} 

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!