VideoContext

2020-02-12 10:35 更新

VideoContext 通過 id 跟一個 video 組件綁定,操作對應(yīng)的 video 組件。


方法

VideoContext.play()

播放視頻。

VideoContext.pause()

暫停視頻。

VideoContext.stop()

停止視頻。

VideoContext.seek(number position)

視頻點播,跳轉(zhuǎn)到指定位置position,單位為秒。

VideoContext.requestFullScreen()

進入全屏, 且方向固定為橫屏。

VideoContext.exitFullScreen()

退出全屏。


代碼示例

<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();
  }
});
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號