關於小程序swiper不顯示圖的那些事

還有幾天快過年了,在這裏提早祝你們新年快樂!html

今天沒事研究了一下小程序,想整個輪播圖玩玩,而後開始看看文檔https://mp.weixin.qq.com/debug/wxadoc/dev/component/swiper.html?t=20161107(官網地址)小程序

示例代碼app

index.wxmlxss

<view class="container">ide

<swiper indicator-dots="{{indicatorDots}}" oop



index.js autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}"> <block wx:for="{{imgUrls}}"> <swiper-item> <image src="{{item}}" class="slide-image" width="355" height="150"/> </swiper-item> </block> </swiper> <button bindtap="changeIndicatorDots"> indicator-dots </button> <button bindtap="changeAutoplay"> autoplay </button> <slider bindchange="intervalChange" show-value min="500" max="2000"/> interval <slider bindchange="durationChange" show-value min="1000" max="10000"/> duration
</view>
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: 5000, duration: 1000 }, changeIndicatorDots: function(e) { this.setData({ indicatorDots: !this.data.indicatorDots }) }, changeAutoplay: function(e) { this.setData({ autoplay: !this.data.autoplay }) }, intervalChange: function(e) { this.setData({ interval: e.detail.value }) }, durationChange: function(e) { this.setData({ duration: e.detail.value }) } })
代碼貼好了,開始保存運行!咦?圖片呢?而後初步懷疑是否是圖片地址不能用了,果斷試了下,沒問題呀!
最後才知道原來是index.wxml中container的app.wxss搞的鬼 align-items: center;這句話刪除了,保存運行。這纔看到告終果。

相關文章
相關標籤/搜索