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
379 B
16 lines
379 B
<view class="container">
|
|
<video
|
|
referrer-policy="origin"
|
|
id="myVideo"
|
|
src="{{videoSrc}}"
|
|
controls
|
|
bind:play="onVideoPlay"
|
|
bind:pause="onVideoPause"
|
|
bind:ended="onVideoEnded"
|
|
class="video-player"
|
|
></video>
|
|
<view class="controls">
|
|
<button bindtap="playVideo">播放</button>
|
|
<button bindtap="pauseVideo">暂停</button>
|
|
</view>
|
|
</view>
|