VideoContext.sendDanmu
解释:发送弹幕。
方法参数
Object object
object 参数说明
参数名 | 类型 | 是否必填 | 默认值 | 说明 |
---|---|---|---|---|
text | string | 否 | 弹幕文字 | |
color | string | 否 | 弹幕颜色 |
示例
扫码体验
请使用百度APP扫码
图片示例
代码示例
- 在 swan 文件中
<view class="wrap">
<video id="myVideo" enable-danmu="true" src="https://b.bdstatic.com/swan-temp/940fe716b0eaad38f47b209d61657490.mp4"></video>
<button type="primary" bindtap="sendDanmu">sendDanmu</button>
</view>
- 在 js 文件中
Page({
data: { },
onLoad() {
const videoContext = swan.createVideoContext('myVideo');
this.videoContext = videoContext;
this.videoContext.play();
},
sendDanmu() {
this.videoContext.sendDanmu({
text: '这是一条弹幕',
color: '#f60'
});
}
});