小程序
小游戏
企业微信
微信支付
扫描小程序码分享
- 当前 Bug 的表现(可附上截图)
swiper组件侧滑滑到一半的时候另一个手指触摸屏幕下滑,卡住swiper,swiper的自动播放也会卡死。并且下拉刷新页面swiper都不会被刷新,
- 预期表现
希望swiper不要被下拉所影响。
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
<!--index.wxml-->
<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>
//index.js
//获取应用实例
const app = getApp()
Page({
data: {
imgUrls: [
'https://images.unsplash.com/photo-1551334787-21e6bd3ab135?w=640'
,
'https://images.unsplash.com/photo-1551214012-84f95e060dee?w=640'
'https://images.unsplash.com/photo-1551446591-142875a901a1?w=640'
],
indicatorDots:
false
autoplay:
interval: 5000,
duration: 1000
},
changeIndicatorDots:
function
(e) {
this
.setData({
indicatorDots: !
.data.indicatorDots
})
changeAutoplay:
autoplay: !
.data.autoplay
intervalChange:
interval: e.detail.value
durationChange:
duration: e.detail.value
}
其实就是官网的demo,视频不让放,就算了吧。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)这个格式的代码片段,视频可以发下我邮箱:804090299@qq.com
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
<!--index.wxml-->
<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>
//index.js
//获取应用实例
const app = getApp()
Page({
data: {
imgUrls: [
'https://images.unsplash.com/photo-1551334787-21e6bd3ab135?w=640'
,
'https://images.unsplash.com/photo-1551214012-84f95e060dee?w=640'
,
'https://images.unsplash.com/photo-1551446591-142875a901a1?w=640'
],
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
})
}
})
其实就是官网的demo,视频不让放,就算了吧。
麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)这个格式的代码片段,视频可以发下我邮箱:804090299@qq.com