1801588-1.html (396B)
1 <!DOCTYPE html> 2 <html> 3 <body> 4 <canvas id="canvas" width="100" height="100"></canvas> 5 <script> 6 var c = document.getElementById("canvas"); 7 var ctx = c.getContext("2d"); 8 ctx.fillStyle = "red"; 9 ctx.fillRect(0, 0, ctx.canvas.width, ctx.canvas.height); 10 11 ctx.globalCompositeOperation = "copy"; 12 ctx.fillStyle = "green"; 13 ctx.fillRect(0, 0, 50, 50); 14 </script> 15 </body> 16 </html>