codecamp

video

基础库 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"
  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);
  }
});
image
live-player
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

字节跳动小程序 介绍

字节跳动小程序 开发

字节跳动小程序开发框架

字节跳动小程序开发框架基础说明

字节跳动小程序开发框架基础功能

字节跳动小程序开发框架逻辑层

无标题文章

无标题目录

API

无标题文章

无标题文章

无标题文章

无标题文章

无标题文章

无标题目录

无标题目录

无标题文章

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }