1107096-invisibles-ref.html (480B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8" /> 5 <script> 6 function draw() { 7 var c = document.getElementById('cc'); 8 var g = c.getContext('2d'); 9 g.fillStyle = 'red'; 10 g.fillRect(0, 0, 200, 200); 11 g.font = '24px arial, sans-serif'; 12 g.fillStyle = '#fff'; 13 g.fillText('__', 10, 30); 14 g.fillText('__', 10, 60); 15 g.fillText('__', 10, 90); 16 g.fillText('__', 10, 120); 17 } 18 </script> 19 </head> 20 <body onload='draw()'> 21 <canvas id='cc' width='200' height='200'></canvas> 22 </body> 23 </html>