coverview 加了动画后,click事件在手机上就无效
模拟器上点击是好的,但是真机打开,点击就没反应,怀疑是不是点击热区不随着动画一起动
2 回复
地图上coverview加了translateX动画,同时绑定了bindtap,点击会有业务处理,但是真机上点击无反应,模拟器OK
<cover-view bindtap=“dosmt” wx:for="{{dms}}" style=‘animation:ani {{item.time}}s linear forwards;top:{{item.top}}px;’ >
<cover-image class=“img” src="{{item.icon}}" />
<cover-view class=“text” >{{item.text}}</cover-view>
</cover-view>
@keyframes ani {
0% {
transform: translateX(0px);
}
100% {
transform: translateX(-800px);
}
}