VideoContext

2020-02-12 10:35 更新

VideoContext 通过 id 跟一个 video 组件绑定,操作对应的 video 组件。


方法

VideoContext.play()

播放视频。

VideoContext.pause()

暂停视频。

VideoContext.stop()

停止视频。

VideoContext.seek(number position)

视频点播,跳转到指定位置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();
  }
});
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号