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


還有幾天快過年了,在這里提前祝大家新年快樂!

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

示例代碼

index.wxml

<view class="container">

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

 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>


index.js
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;這句話刪除了,保存運行。這才看到了結果。




免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM