swan.createLivePlayerContext
解释: 操作对应的 <live-player/>
组件。 创建并返回 live-player 上下文 LivePlayerContext 对象。
方法参数
String domId
domId参数说明
要获取 live-player 组件的 id。
返回值
LivePlayerContext
示例
扫码体验
请使用百度APP扫码
图片示例
代码示例
- 在 swan 文件中
<view class="live-play">
<live-player id="myLive" src="{{src}}">
</live-player>
<div class="section">
<button type="primary" bind:tap="livePlay">开始播放 play</button>
<button type="primary" bind:tap="liveStop">停止播放 stop</button>
<button type="primary" bind:tap="liveMute">静音</button>
<button type="primary" bind:tap="livePause">暂停</button>
<button type="primary" bind:tap="liveResume">恢复</button>
<button type="primary" bind:tap="requestFullScreen">进入全屏</button>
</div>
</view>
- 在 js 文件中
Page({
data: { },
onLoad() {
swan.createLivePlayerContext('myLive');
}
});