onmousemove

clearRect function doesn't clear the canvas

邮差的信 提交于 2019-11-26 02:14:46
问题 I\'m using this script on the body onmousemove function: function lineDraw() { // Get the context and the canvas: var canvas = document.getElementById(\"myCanvas\"); var context = canvas.getContext(\"2d\"); // Clear the last canvas context.clearRect(0, 0, canvas.width, canvas.height); // Draw the line: context.moveTo(0, 0); context.lineTo(event.clientX, event.clientY); context.stroke(); } It\'s supposed to clear the canvas each time I move the mouse around, and draw a new line, but it isn\'t