video

2020-02-11 18:45 更新
基础库 1.0.0 开始支持本组件。

视频组件。相关 API 请参考 tt.createVideoContext


属性说明

属性类型默认值必填说明最低支持版本
srcstring要播放的视频资源地址1.0.0
autoplaybooleanfalse是否自动播放1.0.0
posterstring视频封面的图片网络资源地址1.0.0
bindplayeventhandle当开始播放时触发 play 事件1.0.0
bindpauseeventhandle当暂停播放时触发 pause 事件1.0.0
bindendedeventhandle当播放到末尾时触发 ended 事件1.0.0
binderroreventhandle视频播放出错时触发 error 事件1.0.0
bindtimeupdateeventhandle播放进度变化时触发,event.detail = { currentTime, duration }1.18.0
bindfullscreenchangeeventhandle视频进入和退出全屏时触发1.18.0
loopbooleanfalse是否循环播放1.47.0
show-fullscreen-btnbooleantrue是否显示全屏按钮1.47.0
show-play-btnbooleantrue是否显示播放、暂停、重播按钮,不包括视频封面的播放按钮1.47.0
controlsbooleantrue是否显示全部播放控件1.47.0
object-fitstringcontain当视频大小与 video 容器大小不一致时,视频的表现形式:contain(包含),fill(填充),cover(覆盖)1.47.0
play-btn-positionstringcenter播放按钮的位置:center(视频中间),bottom(控制条上)1.47.0
bindwaitingeventhandle视频出现缓冲时触发1.47.0


代码示例

<video
  src="http://sf1-ttcdn-tos.pstatp.com/obj/ttfe/test/test-upload.mp4" rel="external nofollow" 
  autoplay
  bindplay="play"
  bindpause="pause"
  bindended="ended"
  bindtimeupdate="timeupdate"
  bindfullscreenchange="fullscreenchange"
/>
Page({
  play: function(e) {
    tt.showToast({ title: "play" });
  },
  pause: function(e) {
    tt.showToast({ title: "pause" });
  },
  ended: function(e) {
    tt.showToast({ title: "ended" });
  },
  timeupdate: function(e) {
    console.log(e);
  },
  fullscreenchange: function(e) {
    console.log(e);
  }
});
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号