HTML5 Canvas ile yarım daire oluşturmak için arc() yöntemini kullanarak bir yay oluşturabilir ve bitiş açısını startAngle(başlangıç açısı) + PI olarak tanımlayabiliriz.
Çıktı:
Kod:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <canvas id="canvas" width="578" height="200"></canvas> <script> var canvas = document.getElementById('canvas'); var context = canvas.getContext('2d'); context.beginPath(); context.arc(288, 75, 70, 0, Math.PI, false); context.closePath(); context.lineWidth = 5; context.fillStyle = 'red'; context.fill(); context.strokeStyle = '#550000'; context.stroke(); </script> |
Yorum Yap