9

我想使用 Konvajs 执行以下任务:

  1. 在画布上绘制两个矩形组。每个组包含一个矩形、文本和一个圆圈
  2. 当我使用鼠标从圆圈中拖动时,它会在拖动时绘制一个箭头。
  3. 当我将箭头放入另一组时,它会停止绘制并将两组边缘连接到边缘

像这样的东西:

例子

是否有任何支持形状之间连接的本机方法?谁能给我一些例子吗?

4

1 回答 1

10

我已经连接了 Konva.Circles。但是图像的逻辑也将是相同的。请找到plunkr

var width = window.innerWidth;
    var height = window.innerHeight;

    var stage = new Konva.Stage({
      container: 'container',
      width: width,
      height: height
    });

    var layer = new Konva.Layer();

    var circle = new Konva.Circle({
      x: stage.getWidth() / 2,
      y: stage.getHeight() / 2,
      radius: 40,
      fill: 'green',
      stroke: 'black',
      strokeWidth: 2,
      draggable: true
    });

    var circleA = new Konva.Circle({
      x: stage.getWidth() / 5,
      y: stage.getHeight() / 5,
      radius: 30,
      fill: 'red',
      stroke: 'black',
      strokeWidth: 2,
      draggable: true
    });

    var arrow = new Konva.Arrow({
      points: [circle.getX(), circle.getY(), circleA.getX(), circleA.getY()],
      pointerLength: 10,
      pointerWidth: 10,
      fill: 'black',
      stroke: 'black',
      strokeWidth: 4
    });

    function adjustPoint(e){
      var p=[circle.getX(), circle.getY(), circleA.getX(), circleA.getY()];
      arrow.setPoints(p);
      layer.draw();
    }

    circle.on('dragmove', adjustPoint);

    circleA.on('dragmove', adjustPoint);

    layer.add(circleA);
    // add the shape to the layer
    layer.add(circle);
    layer.add(arrow);

    // add the layer to the stage
    stage.add(layer);
于 2016-05-21T07:48:37.460 回答