video上touch事
<view bindtouchstart=‘viewTouchStart’ class=‘page-v’>
<block wx:for="{{urls}}">
<video wx:if="{{index==0}}" bindtouchstart=‘videoTouchStart’ autoplay=’{{index==0}}’ id=“video-{{index}}” src="{{item}}" style=‘height:{{videoHeight}}px;’>
</video>
<view wx:else style=‘height:{{videoHeight}}px;font-size:26px;’>{{index}}</view>
</block>
</view>
video占据整个页面,在video上滑动页面,触发不了touchstart事件,开发工具可以,用iOS真机不行
5 回复