我在新的一年里工作,我会找到一个画布效果,但我的画布背景 - 颜色将是黑色我想删除画布背景颜色并在画布背景中显示我的身体图像。
这是我的演示代码https://jsfiddle.net/pzg0zuog/
Do you have any idea how to remove this issues.
答案 0 :(得分:3)
在你的主函数中替换这两行:
ctx.fillStyle = 'rgba(0,0,0,0.2)';
ctx.fillRect(0, 0, width, height);
这一行:
ctx.clearRect(0, 0, width, height)
这将清除每一帧的画布,而不是在每帧的画布顶部绘制一个黑色矩形。