W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
VideoContext 通過 id 跟一個 video 組件綁定,操作對應(yīng)的 video 組件。
播放視頻。
暫停視頻。
停止視頻。
視頻點播,跳轉(zhuǎn)到指定位置position,單位為秒。
進入全屏, 且方向固定為橫屏。
退出全屏。
<video
src="http://sf1-ttcdn-tos.pstatp.com/obj/ttfe/test/test-upload.mp4" rel="external nofollow"
id="myVideo"
style="width: 240px; height: 180px;"
/>
<view
style="display: flex; justify-content: space-between; align-items: center;"
>
<button bindtap="play" size="mini">Play</button>
<button bindtap="pause" size="mini">Pause</button>
<button bindtap="stop" size="mini">Stop</button>
</view>
Page({
onReady: function() {
this.videoCtx = tt.createVideoContext("myVideo");
},
play: function() {
this.videoCtx.play();
},
pause: function() {
this.videoCtx.pause();
},
stop: function() {
this.videoCtx.stop();
}
});
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: