收藏
回答

真机调试时live-player组件有bug

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug live-player 微信iOS客户端 7.0.12 2.9.2

在live-player中使用cover-view自定义控制条,使用css属性transition和bottom实现控制条缓慢消失,在真机调试中控制条不会消失,去掉transition属性后,控制条就会消失。而在开发者工具就不会出现这样的问题。

真机调试:

开发者工具调试:



关键代码:

<live-player
      id='live-player'
      src="rtmp://58.200.131.2:1935/livetv/hunantv"
      autoplay
      :muted="!isVolume"
      @netstatus="netchange"
      @statechange="statechange"
      @error="error"
      style="width: 100%; height: 225px"
    > 
            <!-- 防止用户拖动遮罩层 -->
      <cover-view class="full" @click="showCtrls">
        <!-- 控制条 -->
        <cover-view 
          :class="(!isFull?'ctrls':'vertical-ctrls')+' u-flex u-flex-nowrap u-row-between'"
          :style="'bottom:'+(!ctrlsShow?(isFull?'-50px':'-30px'):'0')"
        >
          <cover-view class="u-flex u-flex-nowrap">
            <cover-image class="ctrls-icon" @click="play" 
              :src='baseUrl+"icon_play_"+(!isPlay?"on.png":"off.png")'>
            </cover-image>
            <cover-image class="ctrls-icon" @click="liveRefresh" :src="baseUrl+'icon_refresh.png'"></cover-image>
          </cover-view>


          <cover-view class="u-flex u-flex-nowrap">
            <!-- <cover-image class="ctrls-icon" @click="play" :src="baseUrl+'icon_comment.png'"></cover-image> -->
            <cover-image class="ctrls-icon" @click="()=>{this.isVolume=!this.isVolume}" 
              :src="baseUrl+'icon_volume_'+(isVolume?'on.png':'off.png')">
            </cover-image>
            <cover-image class="ctrls-icon fullIcon" @click="fullScreen" 
              :src="baseUrl+'icon_full_'+(!isFull?'on.png':'off.png')">
            </cover-image>
          </cover-view>


        </cover-view>
      </cover-view>
    </live-player> 
    
  
    
        

onLoad() {
      // 创建 liveplayercontext
      this.livePlayer = uni.createLivePlayerContext('live-player'this)
      // 隐藏控制条
      setTimeout(() => {this.ctrlsShow = false;console.log(666)}, 5000);
      // this.ctrlsShow = false
},

.full{
  width100%;
  height: 100%;
  background: transparent;
  position: relative;
  .ctrls{
    background-color: rgba(0,0,0,.5);
    width: 100vw;
    height: 30px;
    position: absolute;
    bottom: 0;
    padding: 0 10px;
    box-sizing: border-box;
    transition: 1s;
    -webkit-transition: 1s;
    .ctrls-icon{
      width22px;
      height: 22px;
      margin-right: 15px;
    }
    .fullIcon{
      margin-right: 0;
    }
  }
  .vertical-ctrls{
    background-color: rgba(0,0,0,.5);
    width: 100vw;
    height: 50px;
    position: absolute;
    bottom: 0;
    padding: 0 30px;
    box-sizing: border-box;
    // transition: 1s;
    .ctrls-icon{
      width30px;
      height: 30px;
      margin-right: 30px;
    }
    .fullIcon{
      margin-right: 0;
    }
  }
}



最后一次编辑于  2020-05-25
回答关注问题邀请回答
收藏

1 个回答

  • 是小白啊
    是小白啊
    2020-05-25

    live-*组件已经实现了同层,使用view试下?

    2020-05-25
    有用 1
    回复 1
    • qx。
      qx。
      2020-05-25
      解决了 谢谢
      2020-05-25
      回复
登录 后发表内容
问题标签