Computer >> Máy Tính >  >> Lập trình >> Javascript

Tạo văn bản bên trong các vòng kết nối trong HTML5 Canvas

Để tạo văn bản bên trong các vòng tròn trong canvas, hãy sử dụng:

context.beginPath();

Sau đây là canvas:

$("#demo").on("click", "#canvas1", function(event) {
   var canvas = document.getElementById('canvas1');
   if (canvas.getContext) {
      var context = canvas.getContext("2d");
      var w = 25;
      var x = event.pageX;
      var y = Math.floor(event.pageY-$(this).offset().top);

      context.beginPath();
      context.fillStyle = "blue";
      context.arc(x, y, w/2, 0, 2 * Math.PI, false);
      context.fill();
      context = canvas.getContext("2d");

      context.font = '9pt';
      context.fillStyle = 'white';
      context.textAlign = 'center';
      context.fillText('amit', x, y+4);
   }
});

HTML

<div id = demo>
   <canvas id = canvas1></canvas>
</div>