-1:000000000000 | 0:faabba8d9620 |
---|---|
1 <!DOCTYPE html> | |
2 <html> | |
3 <body> | |
4 <canvas id="A" width=200 height=50></canvas><br /> | |
5 <canvas id="B" width=200 height=50></canvas> | |
6 <script> | |
7 var canvasA = document.getElementById("A"), | |
8 ctxA = canvasA.getContext('2d'), | |
9 canvasB = document.getElementById("B"), | |
10 ctxB = canvasB.getContext('2d'), | |
11 width = canvasA.width, | |
12 height = canvasA.height; | |
13 | |
14 ctxB.fillStyle = 'red'; | |
15 ctxB.fillRect(0, 0, width, height); | |
16 </script> | |
17 </body> | |
18 </html> |