是否可以平滑地在canvas元素中移动图像?这就是我正在尝试的:
<input type="text" ...
但是你可以看到它不会顺利工作,它只会清除画布并在新位置绘制图像,我尝试if (a == 1) { // onmousedown
CX = event.clientX;
CY = event.clientY;
return;
} else if (a == 2) { // onmouseup
CimgX += event.clientX - CX;
CimgY += event.clientY - CY;
ctx[0].clearRect(0, 0, canvas[0].width, canvas[0].height);
ctx[0].drawImage(img, CimgX, CimgY);
和onmousemove
但它没有&#39工作。有什么想法吗?