KonvaJS:如何用箭头连接两个形状?

时间:2016-05-17 01:21:34

标签: javascript html5-canvas kineticjs konvajs

我想使用Konvajs完成以下任务:

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

    example

    是否有支持形状之间连接的原生方法? 有人能告诉我一些例子吗?

1 个答案:

答案 0 :(得分:4)

我已连接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);