自定义遮罩穿透问题 安卓遮罩可以防止点击 ios没有效果
< view class = "video-play" > < video id = "myVideo" src = "{{curPlayUrl}}" poster = "{{cw.primaryimg}}" controls = "{{hiddenBottom}}" ></ video > < view hidden = "{{hiddenBottom}}" class = "video-mask" bindtap = "showBuyVip" ></ view > </ view > |
.video-play{ position : relative ; width : 100% ; height : 400 rpx; } .video-mask{ width : 100% ; height : 100% ; position : absolute ; left : 0 ; top : 0 ; background : rgba( 0 , 0 , 0 , 0.2 ); color : #fff ; z-index : 10000 ; } |
问题:给video加了遮罩 再给遮罩绑定事件showBuyVip , 在安卓点击遮罩会触发遮罩绑定的事件,而且点击播放按钮无效;但是ios点击遮罩不会触发事件,点击播放按钮会继续播放。相当于这个遮罩在ios端无效
需求:在播放页面需要判断是否能播放,如果这个遮罩不行 能否给出一个解决方案,谢谢
9 回复