1909718-1-ref.html (386B)
1 <!DOCTYPE html> 2 <html> 3 <body> 4 <canvas id="c" width="200" height="200"></canvas> 5 6 <script> 7 const c = document.getElementById("c"); 8 const ctx = c.getContext("2d"); 9 10 ctx.fillStyle = 'red'; 11 ctx.fillRect(0, 0, 200, 200); 12 13 ctx.beginPath(); 14 ctx.rect(0, 0, 200, 100); 15 ctx.rect(100, 100, 100, 100); 16 ctx.clip(); 17 18 ctx.fillStyle = 'green'; 19 ctx.fillRect(0, 0, 200, 200); 20 21 </script> 22 23 </body> 24 </html>