<view class="pagee">
<video
@bindrendererror='play'
@rendererror='play'
@error='play'
class="video"
src="https://hmsl.oss-cn-beijing.aliyuncs.com/20210105222850h7J5.mp4">
<view class="text">
hellow world
</view>
</video>
</view>
</template>
<script>
export default {
methods:{
play(e){
console.log(e)
}
}
};
</script>
<style lang="scss">
.pagee {
height: 100vh;
width: 750rpx;
.video {
height: 100vh;
width: 750rpx;
position: relative;
z-index: -1;
}
.text {
position: fixed;
top: 20rpx;
z-index: 999;
width: 500rpx;
height: 100rpx;
background-color: red;
color: #fff;
}
}
</style>
- 发布:2021-01-18 11:09
- 更新:2021-01-18 15:36
- 阅读:857
产品分类: uniapp/小程序/微信
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: win10 || 18363.1316
HBuilderX类型: 正式
HBuilderX版本号: 3.0.5
第三方开发者工具版本号: 1.03.2101150
基础库版本号: 2.14.3
项目创建方式: HBuilderX
示例代码:
操作步骤:
代码运行到小程序
代码运行到小程序
预期结果:
同层渲染,view在video上层展示,失败时执行bindrendererror
同层渲染,view在video上层展示,失败时执行bindrendererror
实际结果:
开发者工具正常展示,真机预览刚进入页面view在video上层,然后立马被video覆盖,bindrendererror没触发
开发者工具正常展示,真机预览刚进入页面view在video上层,然后立马被video覆盖,bindrendererror没触发
bug描述:
video同层渲染失败,bindrendererror也不执行,开发者工具正常展示,但是真机预览不可以
YFarer
请问一下 您是如何解决的
2022-06-20 18:13
2***@qq.com (作者)
回复 YFarer: 我也忘了...
2022-08-06 15:44