< scroll-view scroll-x = "true" >
< view class = 'upContent' >
< block wx:for = '{{Items}}' >
< view bindtap = 'choseKind' data-id = '{{item.Id}}' >
< view class = 'upContentView' >
< image mode = 'aspectFill' class = 'upContentPic' src = '{{item.Picture}}' ></ image >
< text class = 'upContentText' >{{item.Name}}</ text >
</ view >
</ view >
</ block >
</ view >
</ scroll-view >
|
|
.upContent{
display : flex;
margin : 0 20 rpx 0 20 rpx;
width : 100% ;
height : 380 rpx;
flex- direction : row;
justify- content : space-between;
}
.upContentPic{
display : block ;
border-radius: 10 rpx;
width : 200 rpx;
height : 280 rpx;
}
.upContentText{
display : block ;
width : 200 rpx;
font-size : 30 rpx;
text-align : center ;
font-family : '方正黑体简体' ;
}
.upContentView{
width : 200 rpx;
height : 320 rpx;
margin : 10 rpx;
}
|
这个代码在安卓下是好好的,横向滚动显示图片,但是在苹果6S下图片全部挤在一起,无法滑动。求大神帮帮忙啊
遇到同样的问题,请问解决了吗? ps:猫眼小程序好像解决了这个问题
我发现我想要的功能,直接直接用
swiper
代替。
我也遇到了,请问解决了吗?我这里遇到的是苹果6
遇到相同 的问题。