live-player 同级渲染测试cover-view在wx:if下层级会比z-index高正常吗
参与内测方式:参与内测:在 app.json 的 window 项加个 renderingMode:mixed
```
<view class=“player-area”>
<live-player class=“player”>
<cover-view class=“cover” wx:if="{{ showCover }}">cover</cover-view>
</live-player>
</view>
<view class=“outer”>outer</view>
```
outer 是一个层级设置得很高的view,showCover是用一个定时器后置设置为true,在ios以及安卓中,发现这个cover会覆盖这个outer,这种是正常的情况么。
如果是正常的话,是不是代表着在player里面就尽量不要用wx:if去处理cover-view了,否则会出现无法预计的覆盖情况?
表现如下图:
开始:
隔了一段时间: