还有几天快过年了,在这里提前祝大家新年快乐!

今天没事研究了一下小程序,想整个轮播图玩玩,然后开始看看文档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;这句话删除了,保存运行。这才看到了结果。

												

最新文章

  1. 微服务实战(二):使用API Gateway--转
  2. 01背包 ZOJ 3931 Exact Compression
  3. QB资料学习.01
  4. excel列递增方法技巧
  5. .NET 环境中使用RabbitMQ(转)
  6. args
  7. 学习Python遇到的那些坑
  8. ajax 模仿百度下拉
  9. Mac 下 docker安装
  10. python 读取SQLServer数据插入到MongoDB数据库中
  11. Android ActionBar详解(二)---&gt;使用ActionBar显示选项菜单
  12. BOS物流管理系统-第一天
  13. Maven在Windows中的配置以及IDE中的项目创建
  14. 芝麻HTTP: Python爬虫入门之Urllib库的高级用法
  15. 触发事件trigger
  16. 记录一个EF连接查询的异常:the entity or complex type &#39;x&#39; cannot be constructed in a linq to entities query
  17. 部署kubernetes1.8.3高可用集群
  18. [daily][qemu][libvirt] 使用libvirt管理qemu
  19. golang web框架 beego 学习 (二) router and controller
  20. C/C++中printf/cout 计算顺序与缓冲区问题

热门文章

  1. ZOJ 3935 2016
  2. Android开发之FileProvider
  3. javascript之日期对象
  4. TimeDelta.total_seconds() in Python2.6-
  5. mysql中TPS, QPS 的计算方式
  6. STM32驱动DS18B20
  7. iOS 消息推送原理及实现总结 分类: ios技术 2015-03-01 09:22 70人阅读 评论(0) 收藏
  8. 【动态规划】Gym - 101102A - Coins
  9. 前端MVVM框架:Knockout.JS(一)
  10. 腾讯面试题:10G 个整数,乱序排列,要求找出中位数。内存限制为 2G。