首页 > 编程 > JavaScript > 正文

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

2019-11-19 16:54:28
字体:
来源:转载
供稿:网友

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

实例代码:

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//监听滚动和点击事件  }) } 

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表