如果有天我们湮没在人潮之中,庸碌一生,那是因为我们没有努力要活得丰盛。善于与人沟通,适度采纳别人意见。
微信小程序 图片宽度自适应的实现
实例代码:
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//监听滚动和点击事件 }) }
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
到此这篇关于微信小程序 图片宽度自适应的实现就介绍到这了。人生,伟业的建立,不在能知,乃在能行。流年似水,如歌,承受委屈是一种胸怀,接受误解是一种心怀,这个世界上失去什么东西都不可怕,唯一可怕的是失去你的心,失去你的勇气,只要你坚韧不拔地奋斗,只要你看向未来,天边彩虹就永远属于你,生命的辉煌也一定永远属于你。更多相关微信小程序 图片宽度自适应的实现内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!