- 在ios系统(iphone5,5s和6)下样式swiper样式崩溃的问题
就是在其他手机上都没有问题都是这样显示的[图片] 唯独在iphone6手机上 显示出来是这样的[图片] <!--技师列表--> <view class="main-content bbe" wx:if="{{technicianArr.length}}"> <swiper class="technicia-swiper" autoplay='true' interval='3000' duration='500' circular='ture' display-multiple-items='3' skip-hidden-item-layout='true'> <swiper-item wx:for="{{technicianArr}}" wx:key="{{item.id}}"> <navigator url="../technician/tecDetails?id={{item.id}}" hover-class="none"> <view class="technicia-view"> <image src="{{imgIp + item.imgUrl}}" class="technicia-image"/> <view class="tc"><text class="little-text">{{item.name}}</text></view> <view class="tc technicia-level">{{item.levelName}}</view> <view class="tc"> <text class="little-text" style='font-size:26rpx;'>赞 {{item.likeNumber}}</text> </view> </view> </navigator> </swiper-item> <swiper-item wx:if="{{technicianArr.length<2}}"></swiper-item> <swiper-item wx:if="{{technicianArr.length<3}}"></swiper-item> </swiper> </view> </view> /*技师列表*/ .technicia-swiper{ width: 100%; height: 320rpx; } .technicia-view{ width: 100%; } .technicia-image{ width: 80%; margin: 5% 10%; height: 180rpx; border-radius: 50%; } .technicia-level{ color: grey; text-align: center; margin: 0 20%; border: 2rpx solid #eee; font-size:20rpx; width: 60%; border-radius: 50rpx; } 求解 是兼容性问题还是我写的代码问题 或者说是iphone某个版本下的问题????? 完全找不到头绪 急急急急急 求各位大神解答
2018-05-23 - 在iphone6 手机上wxss崩溃的问题
就是在其他手机上都没有问题都是这样显示的[图片] 唯独在iphone6手机上 显示出来是这样的[图片] <!--技师列表--> <view class="main-content bbe" wx:if="{{technicianArr.length}}"> <swiper class="technicia-swiper" autoplay='true' interval='3000' duration='500' circular='ture' display-multiple-items='3' skip-hidden-item-layout='true'> <swiper-item wx:for="{{technicianArr}}" wx:key="{{item.id}}"> <navigator url="../technician/tecDetails?id={{item.id}}" hover-class="none"> <view class="technicia-view"> <image src="{{imgIp + item.imgUrl}}" class="technicia-image"/> <view class="tc"><text class="little-text">{{item.name}}</text></view> <view class="tc technicia-level">{{item.levelName}}</view> <view class="tc"> <text class="little-text" style='font-size:26rpx;'>赞 {{item.likeNumber}}</text> </view> </view> </navigator> </swiper-item> <swiper-item wx:if="{{technicianArr.length<2}}"></swiper-item> <swiper-item wx:if="{{technicianArr.length<3}}"></swiper-item> </swiper> </view> </view> /*技师列表*/ .technicia-swiper{ width: 100%; height: 320rpx; } .technicia-view{ width: 100%; } .technicia-image{ width: 80%; margin: 5% 10%; height: 180rpx; border-radius: 50%; } .technicia-level{ color: grey; text-align: center; margin: 0 20%; border: 2rpx solid #eee; font-size:20rpx; width: 60%; border-radius: 50rpx; } 求解 是兼容性问题还是我写的代码问题 或者说是iphone6某个版本下的问题????? 求各位大神解答
2018-05-17 - data自定参数,取不到的问题
[图片] 我在scroll上面绑定了一个事件 我想取到下面的这个id 一直取不到,自定data- 也取不到因为wx:for的作用域的问题
2018-04-28 - input cursor-spacing
怎么解决input cursor-spacing IOS 遮挡输入框的问题? 介于解决不了这个问题,所以我想出了2的解决方法,但是还是踩坑了。 2.我是需要在评价的时候给一个匿名评价的按钮,我是通过点击发送事件或者在这个输入view的背后加上一个透明的遮罩层,如果点击了发送或者点击了外部的遮罩部分就自动隐藏掉我写的这个view,当然在这个view里面还有匿名评价选择的按钮,问题是在输入法中有一个全键盘下拉的按钮在测试的时候如果直接点击软键盘上面的键盘下拉事件,我自己写的那个view就不会隐藏起来,还是会显示在页面上。 ,我们能对这个按钮进行监听或者挂载事件吗? [图片] [图片]
2018-04-11