播放器上的cover-view 文本被截断BUG
发布于 6 年前 作者 longyong 16188 次浏览 来自 问答

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>

回到顶部