2

是否可以在画布上的 javascript 中实现绘制文本功能?

一个文本按钮说“A”,点击这个就像在油漆中一样,应该能够在用户点击鼠标的任何地方在画布上绘制一个文本框。还应该能够输入文本初始化。也应该能够移动这个文本框画布上的任何地方。

任何建议/解决方案都是可观的。

谢谢。

4

1 回答 1

2

这个基本框架应该可以帮助您入门。

此代码允许用户输入他们的文本。

然后他们点击画布,他们的文本被绘制在鼠标位置。

当然,您会希望从这里获取它来设计它以满足您的需求。

这是代码和小提琴:http: //jsfiddle.net/m1erickson/7GHvj/

<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" media="all" href="css/reset.css" /> <!-- reset css -->
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<!--[if lt IE 9]><script type="text/javascript" src="../excanvas.js"></script><![endif]-->

<style>
    body{ background-color: ivory; }
    canvas{border:1px solid red;}
</style>

<script>
$(function(){

    var canvas=document.getElementById("canvas");
    var ctx=canvas.getContext("2d");
    var lastX;
    var lastY;
    var strokeColor="red";
    var strokeWidth=2;
    var canMouseX;
    var canMouseY;
    var canvasOffset=$("#canvas").offset();
    var offsetX=canvasOffset.left;
    var offsetY=canvasOffset.top;


    function handleMouseDown(e){
      canMouseX=parseInt(e.clientX-offsetX);
      canMouseY=parseInt(e.clientY-offsetY);
      $("#downlog").html("Down: "+ canMouseX + " / " + canMouseY);

      // Put your mousedown stuff here
      var text=document.getElementById("text").value;
      ctx.font = 'italic 20px sans-serif';
      ctx.fillText(text,canMouseX,canMouseY);
    }

    $("#canvas").mousedown(function(e){handleMouseDown(e);});

}); // end $(function(){});
</script>

</head>

<body>


    <p>Enter the text here first</p> 
    <input id="text" type="text" name="text" value="My Text."><br>
    <p>Then click on the canvas to draw the text.</p>
    <canvas id="canvas" width=576 height=307></canvas>

</body>
</html>
于 2013-02-28T19:03:53.013 回答