<view class="most-new-content">
<view class="most-new-content-desc">{{mostNew[index].description}}</view>
<scroll-view scroll-x="true" style=" white-space: nowrap; display: flex;height:100%;" >
<!-- <view > -->
<video class="section" poster="http://www.jshuaiweb.com/mini/jinyi/images/mostNew-1.png" src="http://tbm.alicdn.com/Uob6TqgDJuggjUaP6bv/NNtoO48LH9fensAkefH%40%40sdregop.mp4" danmu-list="{{danmuList}}" enable-danmu danmu-btn controls bindtap="bindfullscreenchange" objectFit='fill'>
</video>
<!-- </view> -->
<image bindtap='touchStart' wx:for="{{mostNew[index].imgUrl}}" wx:key="index" src="{{item}}"></image>
</scroll-view>
</view>
看官方的说明 video标签是原生组件 不要用在scrollview里面
如果想video可以在列表页里面滚动 那么不要用scrollview 直接用一个超长view来滚动
但是内存和某些回调会出现一些问题 自行取舍
tip
: 请勿在scroll-view
中使用textarea
、map
、canvas
、video
组件