-2

如何在 raphaeljs 制作的节点中插入文本?我想使用 onClick 来调用你在节点上插入或编辑文本的函数。但我不知道该怎么做。请帮我。

图片:http ://raphaeljs.com/graffle.html

4

1 回答 1

0

使用这个演示

它正在使用您的示例并插入文本。

    connections = [],
    shapes = [  r.ellipse(190, 100, 30, 20),
                r.rect(290, 80, 60, 40, 10),
                r.rect(290, 180, 60, 40, 2),
                r.ellipse(450, 100, 20, 20)
            ],
    texts = [   r.text(190, 100, "One"),
                r.text(320, 100, "Two"),
                r.text(320, 200, "Three"),
                r.text(450, 100, "Four")
            ];

这正是您所需要的。

于 2013-10-15T16:38:27.383 回答