1909718-2.html (430B)
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.moveTo(-6091968027, 0); 15 ctx.lineTo(100, 0); 16 ctx.lineTo(100, 100); 17 ctx.lineTo(-6091968027, 100); 18 ctx.clip(); 19 20 ctx.fillStyle = 'green'; 21 ctx.fillRect(0, 0, 200, 200); 22 23 </script> 24 25 </body> 26 </html>