小程序
小游戏
企业微信
微信支付
扫描小程序码分享
滚动多张图片,部分显示,部分不显示。有的时候也能全部显示出来。
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
麻烦提供一下出现问题的机型和微信版本,并且给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
<swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}" style='height:{{imgheight}}px'>
<block wx:for="{{swipers}}" wx:key="{{item.id}}">
<swiper-item>
<view bindtap="navito" data-id="{{item.id}}">
<image bindload="imageLoad" style='width: 100%;height:{{imgheight}}px' src="{{item.pic}}"></image>
</view>
</swiper-item>
</block>
</swiper>
Page({
data: {
swipers: null, //onshow函数中对这个做了初始化
imgheight: 0,
imgwidth: 0,
indicatorDots: false,
autoplay: true,
interval: 2000,
duration: 500
},
imageLoad: function (e) {
var tmpwidth = e.detail.width
var tmpheight = e.detail.height
var ratio = tmpwidth / tmpheight
this.setData({
imgwidth: wx.getSystemInfoSync().screenWidth,
imgheight: wx.getSystemInfoSync().screenWidth / ratio,
})
}
复现率高 + 1
机型:多种机型、android、ios都出现过,复现率很高 微信版本:6.6.7
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
麻烦提供一下出现问题的机型和微信版本,并且给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题
<swiper indicator-dots="{{indicatorDots}}" autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}" style='height:{{imgheight}}px'>
<block wx:for="{{swipers}}" wx:key="{{item.id}}">
<swiper-item>
<view bindtap="navito" data-id="{{item.id}}">
<image bindload="imageLoad" style='width: 100%;height:{{imgheight}}px' src="{{item.pic}}"></image>
</view>
</swiper-item>
</block>
</swiper>
Page({
data: {
swipers: null, //onshow函数中对这个做了初始化
imgheight: 0,
imgwidth: 0,
indicatorDots: false,
autoplay: true,
interval: 2000,
duration: 500
},
imageLoad: function (e) {
var tmpwidth = e.detail.width
var tmpheight = e.detail.height
var ratio = tmpwidth / tmpheight
this.setData({
imgwidth: wx.getSystemInfoSync().screenWidth,
imgheight: wx.getSystemInfoSync().screenWidth / ratio,
})
}
复现率高 + 1
机型:多种机型、android、ios都出现过,复现率很高 微信版本:6.6.7