VideoContext.sendDanmu

解释:发送弹幕。

方法参数

Object object

object 参数说明

参数名类型是否必填默认值说明
textstring弹幕文字
colorstring弹幕颜色

示例

在开发者工具中预览效果

扫码体验

VideoContext.sendDanmu - 图1请使用百度APP扫码

图片示例

VideoContext.sendDanmu - 图2

VideoContext.sendDanmu - 图3

VideoContext.sendDanmu - 图4

代码示例

  • 在 swan 文件中
  1. <view class="wrap">
  2. <video id="myVideo" enable-danmu="true" src="https://b.bdstatic.com/swan-temp/940fe716b0eaad38f47b209d61657490.mp4"></video>
  3. <button type="primary" bindtap="sendDanmu">sendDanmu</button>
  4. </view>
  • 在 js 文件中
  1. Page({
  2. data: { },
  3. onLoad() {
  4. const videoContext = swan.createVideoContext('myVideo');
  5. this.videoContext = videoContext;
  6. this.videoContext.play();
  7. },
  8. sendDanmu() {
  9. this.videoContext.sendDanmu({
  10. text: '这是一条弹幕',
  11. color: '#f60'
  12. });
  13. }
  14. });