刮刮乐效果原来如此简单
1.刮刮乐(橡皮擦)效果的核心apictx.globalCompositeOperation = type; 设置要在绘制新形状时应用的合成操作的类型。我们这里需要用到的类型是 destination-out此属性的详细信息:MDN文档 2.基础版刮刮乐功能canvs 覆盖在图片上 <style> body { margin: 0; } img { width: 400px; height: 300px; left: 200px; position: absolute; z-index: -1; } canvas { margin-left: 200px; } </style> ...