同问
微信小游戏显示不全问题新手一枚,在开发微信小游戏的时候,真机测试时在安卓机显示正常,在iphone6,6p,xs都是发生了缩图,只显示上面一半,下半是黑屏,但ipad显示正常,求解这该怎么解决 [图片] 如图,下半面都是黑屏,求大神解答
2020-02-15我也遇到这个问题,你的解决没有呀
关闭小游戏,重新打开后出现黑屏?大神速进。export class Main { constructor() { this.canvas = wx.createCanvas(); this.ctx = this.canvas.getContext("2d"); var image = wx.createImage(); image.src = "res/bg.png"; image.onload = () => { this.ctx.drawImage( image, 0, 0, image.width, image.height, 0, 0, this.canvas.width, this.canvas.height, ); }; } }[图片] 关闭小游戏,重新打开后出现黑屏?大神速进。
2020-02-15