1984014-1-ref.html (316B)
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.globalCompositeOperation = "copy"; 9 ctx.fillStyle = "green"; 10 ctx.fillRect(0, 0, 50, 50); 11 </script> 12 </body>