收藏
回答

播放器上的cover-view 文本被截断BUG

框架类型 终端类型 操作系统 微信版本 基础库版本
小程序 客户端 iOS 6.6.1 1.9.5

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>


回答关注问题邀请回答
收藏
登录 后发表内容