• video
    • Tip

    video

    视频。该组件是原生组件,使用时请注意相关限制。

    属性名类型默认值说明最低版本
    srcString要播放视频的资源地址,支持云文件ID
    durationNumber指定视频时长
    controlsBooleantrue是否显示默认播放控件(播放/暂停按钮、播放进度、时间)
    danmu-listObject Array弹幕列表
    danmu-btnBooleanfalse是否显示弹幕按钮,只在初始化时有效,不能动态变更
    enable-danmuBooleanfalse是否展示弹幕,只在初始化时有效,不能动态变更
    autoplayBooleanfalse是否自动播放
    loopBooleanfalse是否循环播放
    mutedBooleanfalse是否静音播放
    initial-timeNumber指定视频初始播放位置
    page-gestureBooleanfalse在非全屏模式下,是否开启亮度与音量调节手势
    directionNumber设置全屏时视频的方向,不指定则根据宽高比自动判断。有效值为 0(正常竖向), 90(屏幕逆时针90度), -90(屏幕顺时针90度)
    show-progressBooleantrue若不设置,宽度大于240时才会显示
    show-fullscreen-btnBooleantrue是否显示全屏按钮
    show-play-btnBooleantrue是否显示视频底部控制栏的播放按钮
    show-center-play-btnBooleantrue是否显示视频中间的播放按钮
    enable-progress-gestureBooleantrue是否开启控制进度的手势
    object-fitStringcontain当视频大小与 video 容器大小不一致时,视频的表现形式。contain:包含,fill:填充,cover:覆盖
    posterString视频封面的图片网络资源地址或云文件ID。若 controls 属性值为 false 则设置 poster 无效
    show-mute-btnBooleanfalse是否显示静音按钮
    titleString视频的标题,全屏时在顶部展示
    play-btn-positionStringbottom播放按钮的位置,有效值为:bottom(controls bar 上)、center(视频中间)
    enable-play-gestureBooleanfalse是否开启播放手势,即双击切换播放/暂停
    auto-pause-if-navigateBooleantrue当跳转到其它小程序页面时,是否自动暂停本页面的视频
    auto-pause-if-open-nativeBooleantrue当跳转到其它QQ原生页面时,是否自动暂停本页面的视频
    bindplayEventHandle当开始/继续播放时触发play事件
    bindpauseEventHandle当暂停播放时触发 pause 事件
    bindendedEventHandle当播放到末尾时触发 ended 事件
    bindtimeupdateEventHandle播放进度变化时触发,event.detail = {currentTime, duration} 。触发频率 250ms 一次
    bindfullscreenchangeEventHandle视频进入和退出全屏时触发,event.detail = {fullScreen, direction},direction 有效值为 vertical 或 horizontal
    bindwaitingEventHandle视频出现缓冲时触发
    binderrorEventHandle视频播放出错时触发
    bindprogressEventHandle加载进度变化时触发,只支持一段加载。event.detail = {buffered},百分比

    <video> 默认宽度300px、高度225px,可通过qss设置宽高。

    示例代码:

    1. <view class="section tc">
    2. <video src="{{src}}" controls></video>
    3. <view class="btn-area">
    4. <button bindtap="bindButtonTap">获取视频</button>
    5. </view>
    6. </view>
    7. <view class="section tc">
    8. <video
    9. id="myVideo"
    10. src="https://qzonestyle.gtimg.cn/qzone/qzact/act/external/qq-video/qq-video.mp4"
    11. danmu-list="{{danmuList}}"
    12. enable-danmu
    13. danmu-btn
    14. controls
    15. ></video>
    16. <view class="btn-area">
    17. <button bindtap="bindButtonTap">获取视频</button>
    18. <input bindblur="bindInputBlur" />
    19. <button bindtap="bindSendDanmu">发送弹幕</button>
    20. </view>
    21. </view>
    1. function getRandomColor() {
    2. const rgb = []
    3. for (let i = 0; i < 3; ++i) {
    4. let color = Math.floor(Math.random() * 256).toString(16)
    5. color = color.length == 1 ? '0' + color : color
    6. rgb.push(color)
    7. }
    8. return '#' + rgb.join('')
    9. }
    10. Page({
    11. onReady(res) {
    12. this.videoContext = qq.createVideoContext('myVideo')
    13. },
    14. inputValue: '',
    15. data: {
    16. src: '',
    17. danmuList: [
    18. {
    19. text: '第 1s 出现的弹幕',
    20. color: '#ff0000',
    21. time: 1
    22. },
    23. {
    24. text: '第 3s 出现的弹幕',
    25. color: '#ff00ff',
    26. time: 3
    27. }]
    28. },
    29. bindInputBlur(e) {
    30. this.inputValue = e.detail.value
    31. },
    32. bindButtonTap() {
    33. const that = this
    34. qq.chooseVideo({
    35. sourceType: ['album', 'camera'],
    36. maxDuration: 60,
    37. camera: ['front', 'back'],
    38. success(res) {
    39. that.setData({
    40. src: res.tempFilePath
    41. })
    42. }
    43. })
    44. },
    45. bindSendDanmu() {
    46. this.videoContext.sendDanmu({
    47. text: this.inputValue,
    48. color: getRandomColor()
    49. })
    50. }
    51. })
    Tip
    • 请注意原生组件使用限制。