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.fillStyle = '#000'; | |
6 ctx.arc(50, 50, 25, 0, Math.PI * 2, true); | |
7 ctx.fill(); | |
8 ctx.filter = 'drop-shadow(0 10px black)'; | |
Stephen White
2015/06/25 18:30:26
Nit: 0 -> 0px
| |
9 ctx.globalCompositeOperation = 'source-in'; | |
10 ctx.fillStyle = '#0f0'; | |
11 ctx.fillRect(25, 25, 50, 40); | |
12 </script> | |
OLD | NEW |