微信小程序自定义swiper微信小程序自定义swiper滑块视图容器。其中只可放置swiper-item组件,否则会导致未定义的行为。

先在index.wxml中写style=“background:{{item}}” 报错不要管,不影响页面布局style=“background:{{item}}” 报错不要管,不影响页面布局

indicator-dots="{{indicatorDots}}" 是否显示面板指示点
autoplay="{{autoplay}}" 是否自动切换
interval="{{interval}}" 自动切换时间间隔
duration="{{duration}}" 滑动动画时长
circular="{{circular}}" 是否采用衔接滑动
indicator-active-color="#ff0099" 选中指示点颜色
>
循环遍历数据











indicator-dots="{{indicatorDots}}" 是否显示面板指示点
autoplay="{{autoplay}}" 是否自动切换
interval="{{interval}}" 自动切换时间间隔
duration="{{duration}}" 滑动动画时长
circular="{{circular}}" 是否采用衔接滑动
indicator-active-color="#ff0099" 选中指示点颜色
>
循环遍历数据









再在index.js中写
Page({
data: {

background: ["red", "pink","yellowgreen"],

indicatorDots: true,

vertical: false,

autoplay: true,

interval: 2000,

duration: 500,

circular:true
}
})

Page({
data: {

background: ["red", "pink","yellowgreen"],

indicatorDots: true,

vertical: false,

autoplay: true,

interval: 2000,

duration: 500,

circular:true
}
})
最后在index.wxss中写
.swiper1{
width: 100%;
height: 200px;
}
.swiper-item{
width: 100%;
height: 100%;
}

.swiper1{
width: 100%;
height: 200px;
}
.swiper-item{
width: 100%;
height: 100%;
}
记住:记住:图片跟背景颜色思路一样