时间:2019-05-03 来源:小程序工厂
C***:
没理解。
张***:
就是
1.手机设为横屏显示的时候:
{
"deviceOrientation": "landscape"
}
2.通过window.innerWidth获取screenWidth, window.innerHeight获取 screenHeight
3.然后画出一个图片
ctx.drawImage(
this.img,
0,
0,
this.width,
this.height,
0,
0,
screenWidth,
screenHeight
)
这种情况下, 在开发者工具中预览是没有问题的,但是在手机上预览,就会出现问题(画布被拉伸?)
如果这是将ctx.drawImage方法中的screenWidth和screenHeight的顺序调转,那手机上显示就没问题了,但是在开发者工具上预览就有问题
【51小程 序】我应该如何设置1.7.2这个版本 微信小程序教程
C***:
你好,这是一个已知问题,我们会尽快进行修复。
张***:系统记录