swan.createLivePlayerContext

解释: 操作对应的 <live-player/> 组件。 创建并返回 live-player 上下文 LivePlayerContext 对象。

方法参数

String domId

domId参数说明

要获取 live-player 组件的 id。

返回值

LivePlayerContext

示例

在开发者工具中预览效果

扫码体验

swan.createLivePlayerContext - 图1请使用百度APP扫码

图片示例

swan.createLivePlayerContext - 图2

swan.createLivePlayerContext - 图3

swan.createLivePlayerContext - 图4

代码示例

  • 在 swan 文件中
  1. <view class="live-play">
  2. <live-player id="myLive" src="{{src}}">
  3. </live-player>
  4. <div class="section">
  5. <button type="primary" bind:tap="livePlay">开始播放 play</button>
  6. <button type="primary" bind:tap="liveStop">停止播放 stop</button>
  7. <button type="primary" bind:tap="liveMute">静音</button>
  8. <button type="primary" bind:tap="livePause">暂停</button>
  9. <button type="primary" bind:tap="liveResume">恢复</button>
  10. <button type="primary" bind:tap="requestFullScreen">进入全屏</button>
  11. </div>
  12. </view>
  • 在 js 文件中
Page({
    data: { },
    onLoad() {
       swan.createLivePlayerContext('myLive');
    }
});