Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

HTML5 캔버스 원 텍스트


캔버스의 원 안에 텍스트를 만들려면 -

context.beginPath();

예시

다음은 캔버스입니다 -

$("#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>