- 当前 Bug 的表现(可附上截图)
在开发工具中, 底部被黑块截掉, 但在手机中显示正常, 附开发工具与手机上的截图
- 预期表现
开发工具中没有底部黑块
- 复现路径
普通编译
- 提供一个最简复现 Demo
``` js
wx.downloadFile({
url: 'https://edu-fe.ks3-cn-beijing.ksyun.com/others/small-game/bg.mp4',
success (res) {
console.log(res)
wx.createVideo({
x: 0,
y: 0,
// width: window.innerWidth,
width: window.innerWidth,
height: window.innerHeight,
poster: '',
src: res.tempFilePath,
controls: false,
autoplay: true,
loop: true,
muted: true
})
}
})
```