Blogger Information
Blog 39
fans 0
comment 0
visits 34689
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
微信小程序中的滑块视图
美丽城堡
Original
1486 people have browsed it

实例

hello.wxml

<swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}" circular="{{circular}}">
    <block wx:for="{{imgUrls}}" wx:key="id">
        <swiper-item class="image-box">
            <image src="{{item}}" class="slide-image" />
        </swiper-item>
    </block>
</swiper>

运行实例 »

点击 "运行实例" 按钮查看在线实例

hello.wxss

实例

.image-box image{width: 750rpx; }

运行实例 »

点击 "运行实例" 按钮查看在线实例

hello.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: true,
    autoplay: false,
    interval: 3000,
    duration: 1000,
    circular: true
}
})

运行实例 »

点击 "运行实例" 按钮查看在线实例


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post