在网上找了一个canvas的代码,pc端浏览器是没有问题的,但是在移动端就不行了,是图中矩形里面设定的吗?怎么解决
1 回答
万千封印
TA贡献1891条经验 获得超3个赞
看了半天看
因为手机端是没有mouse = =
this.canvas.onmousedown = function (e) { _this.downEvent(e)}; this.canvas.onmousemove = function (e) { _this.moveEvent(e)}; this.canvas.onmouseup = function (e) { _this.upEvent(e)}; this.canvas.onmouseout = function (e) { _this.upEvent(e)};
改为-->
this.canvas.addEventListener('touchstart', function (e) { _this.downEvent(e)}); this.canvas.addEventListener('touchmove', function (e) { _this.moveEvent(e)}); this.canvas.addEventListener('touchend ', function (e) { _this.upEvent(e)});
试一下~ ps:因为我现在没有服务器测不了~
添加回答
举报
0/150
提交
取消