收藏
回答

多次调用 setTransfrom 的问题?

框架类型 问题类型 API/组件名称 终端类型 操作系统 微信版本 基础库版本
小程序 Bug setTransfrom 客户端 6.6.5 1.9.91

貌似 setTransfrom 真机的表现和模拟器中的表现不一致。


onLoad() {
        this.context = wx.createCanvasContext("surface");
         
        for ( var i = 0; i < 4; ++i ) {
            this.context.save();
            this.context.setTransform(1, 0, 0, 1, 100 * i, 100 * i);
            this.context.fillStyle = "rgba(0, 200, 0, 0.5)";
            this.context.fillRect(0, 0, 100, 100);
            this.context.fill();
            this.context.restore();
        }
         
        this.context.draw();
}


模拟器效果:
真机效果:


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