agora-player.wxml 930 B

12345678910111213141516
  1. <!--components/agora-player/agora-player.wxml-->
  2. <view class="play-container" style="left:{{x}}px; top:{{y}}px; width: {{width}}px; height: {{height}}px; ">
  3. <live-player wx:if="{{url!==''}}" id="player-{{uid}}" src="{{url}}" mode="RTC"
  4. class="player" orientation="{{orientation}}"
  5. bindstatechange="playerStateChange"
  6. bindnetstatus="playerNetStatus"
  7. object-fit="fillCrop"
  8. style="height:{{height}}px; position: absolute; width: 100%; top: 0; left: 0;"
  9. debug="{{debug}}" autoplay="true"/>
  10. <cover-view wx-if="{{status !== 'ok'}}" class="sud flex-center-column" style="position: absolute; width: 100%; height:{{height}}px;justify-content:center">
  11. <cover-image style="width: 128px;height:103px" src="../../images/{{status}}.png"></cover-image>
  12. </cover-view>
  13. <cover-view class="" style="position: absolute;top:10px;left:10px;font-size: 28rpx; right: 10px">
  14. {{name}}({{uid}})
  15. </cover-view>
  16. </view>