1984014-1.html (369B)
1 <!DOCTYPE html> 2 <head><meta charset="utf-8"></head> 3 <body> 4 <canvas id="canvas" width="150" height="150"></canvas> 5 <script> 6 let canvas = document.getElementById("canvas"); 7 let ctx = canvas.getContext("2d"); 8 ctx.fillStyle = "red"; 9 ctx.fillRect(0, 0, 150, 150); 10 ctx.globalCompositeOperation = "copy"; 11 ctx.fillStyle = "green"; 12 ctx.fillRect(0, 0, 50, 50); 13 </script> 14 </body>