HTML5 中画布旋转后检测画布上点的步骤


每当使用画布并希望旋转该画布时,都需要转换点来绘制与其旋转相关的点。

可在画布旋转后创建转换类以检测画布上的点

var t = new Transform();
console.log(t.transformPoint(5,6)); //Transform point will be [5,6]

t.rotate(1); // Same transformations can be applied that we did to the canvas
console.log(t.transformPoint(5,6)); // Transformed point will be [-2.347, 7.449]

更新日期:2020 年 1 月 30 日

225 次浏览

开启你的 职业生涯

通过完成该课程获得认证

开始
广告