You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
595 B

5 months ago
<!--区域一:视频播放器-->
<video id='myVideo' controls autoplay src="{{src}}" enable-danmu-btn></video>
<!--区域2弹幕控制-->
<view class='danmuArea'>
<input type='text'placeholder='请输入弹幕内容'bindinput='getDanmu'></input>
<button bindtap='sendDanmu'>发送弹幕</button>
</view>
<!--区域3视频列表-->
<view class='videoList'>
<view class='videoBar'wx:for='{{list}}'wx:key='video{{index}}'data-url='{{item.videoUrl}}'bindtap='playVideo'>
<image src='/static/img/1234.png'></image>
<text>{{item.title}}</text>
</view>
</view>