4

我想添加Textbox或可编辑的元素,让用户可以选择编辑文本。

这是我当前的代码:

var text = new Kinetic.Text({
        text: "Sample Text", ---> i want to edit this text 
        x: 50,
        y: 10,
        fill: "transparent",
        fontSize: 10,
        fontFamily: "Helvetica Neue",
        textFill: "#000",
        align: "center",
        verticalAlign: "middle",
        name:'TEXT'
    });
4

3 回答 3

11

目前似乎没有任何方法可以使用 Kinetic JS 创建可编辑文本(请参阅 stackoverflow 上的几个线程),有些人建议使用画布旁边的输入字段来编辑文本,但我的解决方案是下列的:

  • 使用您的代码创建文本
  • 在文本上单击 [text.on("click", function...],在鼠标光标处创建一个输入字段

嗯,这就是计划。也许在输入字段中使用“保存”按钮文本更容易,因此您确切知道何时关闭它以及何时将输入字段数据存储到 Kinetic 文本中。如果您不想编辑它,您还需要一个“关闭”功能。

一个非常简单的解决方案也是一个简单的 JavaScript 提示:

var xy = prompt("gimme your text");

所以,这样的事情将是最好的解决方案恕我直言:

myText.on('click', function(evt) {
    this.setText(prompt('New Text:'));
    layer.draw(); //redraw the layer containing the textfield
});
于 2013-01-16T17:53:29.143 回答
2

我尝试了一个具有可编辑文本功能的实际 KinetiJS 插件。

我知道它正在重新发明轮子,当你可以只悬停一个文本区域时,但为什么不把它也只放在画布上。

检查插件:https ://github.com/nktsitas/kineticjs-editable-text

于 2014-01-14T15:14:07.313 回答
1

几天前我在我的项目中这样做了。野兔是代码片段。基本上我们首先绘制矩形,然后在其中放置一个文本区域,最后将其转换为 kinetic.text 节点。

             drawText: function ( color )
            {
                var layer1=this.model.stage.getLayers()[0];
                var $this=this;
                console.log('drawText: color: ' + color);

                if($this.rectangleDrawn==true)
                {

                    var down = false, oPoint;
                    layer1.off("mousedown touchstart mousemove touchmove mouseup touchend");
                    if(group!=undefined && group!='')
                    {
                        $this.hideAnchors(group);
                    }
                    console.log("textX: "+textX);
                    //after rectangle is drawn we now have to add the editablesection
                    $('<textarea id="text" type="text"  width='+textWidth +'px height='+textHeight+'px style="font-size: 30px;font-family:Calibri;height:'+textHeight+'px;width:'+textWidth+'px;position:absolute'+';left:'+textX+'px'+';top:'+textY+'px'+';z-index:5'+';background-color:#ffcc00;"></textarea>')

                    .insertBefore('.kineticjs-content');
                    $('#text').on('blur',function()
                    {
                        console.log("textchange");
                        text = new Kinetic.Text( {
                            x: textX,
                            y: textY,
                            stroke: color,
                            strokeWidth: 1,
                            fontSize: 30,
                            fontFamily: 'Calibri',
                            clearBeforeDraw: false,
                            name: 'image'+layer1.getName(),
                            draggable: true,
                            height: textHeight,
                            width: textWidth,
                            text: $('#text').val()
                        } );
                        text.on( 'mouseleave dbltap', function ()
                        {
                            text=this;
                        } );
                        $('#text').remove();

                        layer1.add( text );
                        layer1.draw(); 
                    })
                    },drawRectangle: function ( opacity, colorFill,stroke,textColor ){rect = new Kinetic.Rect({
                    x: mousePos.x,
                    y: mousePos.y,
                    width: 0,
                    height: 0,
                    stroke: stroke,
                    strokeWidth: 4,
                    opacity: opacity,
                    clearBeforeDraw: false,
                    name: 'image'+layer1.getName()
                });
                layer1.on( "mouseup touchend", function ( e )
                {
                console.log("rectangle: mouseup");
                console.log("width: "+rect.getWidth(  ));
                rect.setOpacity(opacity);
                rect.setFill(colorFill);
                layer1.draw();
                    down = false;
                    console.log("textColor: "+textColor)
                    if(textColor!=undefined)
                    {
                        textWidth=rect.getWidth(  );
                        textHeight=rect.getHeight(  );
                        textX = rect.getAbsolutePosition().x;
                        textY=rect.getAbsolutePosition().y;
                        $this.rectangleDrawn=true;
                        $this.drawText(textColor);
                        console.log("textdrawn ");
                        $this.group.remove();
                    }

        },
于 2014-01-23T05:26:23.910 回答