以下代码APP可以正常直播,要求'标题'是浮动在视频上的,但是APP端看不到 “标题”,要如何处理呢?
复制代码<template>
<view class="live">
<!-- #ifdef MP-WEIXIN -->
<view id='video-box' class="live">
<live-pusher class="live" id="pusher" whiteness=9 beauty=9 mode="RTC" :url="url" autopush='true'></live-pusher>
</view>
<!-- #endif -->
<view-cover @tap="clickRequest" class="chat" style="position: absolute;z-index: 999;width: 100%;height: 100px;bottom:0px; color: #ffffff;background:#000000;">
标题
</view-cover>
</view>
</template>
复制代码 //#ifdef APP-PLUS
onPush(url){
const currentWebview = this.$mp.page.$getAppWebview()
var pusher = plus.video.createLivePusher("livepusher", {
url:url,
top:'0px',
left:'0px',
width: '100%',
height: '100%',
position: 'absolute',
//beauty:1,
//whiteness:1
});
currentWebview.append(pusher);
pusher.start();
},
//#endif
其他省略
6***@163.com
请问你现在解决了吗?
2020-06-04 11:40