收藏
回答

createVideo 在开发工具中显示不全

框架类型 问题类型 操作系统 工具版本
小游戏 Bug macOS v1.02.1811290

- 当前 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

        })

    }

})

```

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