live-player上实现一个简单的白透明黑色背景,文字居中,不定宽的效果
非必现,但是概率很大
# css
.single {
position: fixed;
background-color: rgba(0, 0, 0, 0.4);
padding: 0 20rpx;
line-height: 30px;
text-align: center;
}
# wxml
<cover-view class="single">23232人</cover-view>
或者
.out {
position: fixed;
background-color: rgba(0, 0, 0, 0.4);
}
.in {
margin: 0 20rpx;
line-height: 30px;
text-align: center;
}
<cover-view class="out">
<cover-view class="inner"></cover-view>
</cover-view>