OLD | NEW |
---|---|
(Empty) | |
1 <canvas id="canvas" width="100" height="100"></canvas> | |
2 <script> | |
3 var canvas = document.getElementById('canvas'); | |
4 var ctx = canvas.getContext('2d'); | |
5 ctx.font = '20px sans-serif'; | |
6 ctx.filter = 'drop-shadow(0 .5em black)'; | |
7 ctx.fillStyle = '#0f0'; | |
8 ctx.fillRect(25, 25, 25, 40); | |
9 canvas.style.fontSize = '5px'; | |
10 ctx.font = '4em sans-serif'; | |
11 ctx.filter = 'drop-shadow(0 .5em black)'; | |
Stephen White
2015/06/25 18:30:27
Nit: 0 -> 0em
| |
12 ctx.fillRect(50, 25, 25, 40); | |
13 </script> | |
OLD | NEW |