0

我需要用 react-konva 制作圆角垂直线,使用现有的 API 可以实现吗?如果是,如何?

我对 Line 类使用了 bezier API,效果很好。不知何故,现在我需要将贝塞尔曲线修改为圆形垂直线。

像这样:圆角垂直线

4

1 回答 1

0

有很多方法可以实现它。您可以使用张力来创建曲线或使用lineCap属性。

但要获得更多控制权,最好创建自定义形状。

const RADIUS = 20;

const Line = ({ points }) => {
  return (
    <Shape
      points={points}
      sceneFunc={(context, shape) => {
        const width = points[1].x - points[0].x;
        const height = points[1].y - points[0].y;
        const dir = Math.sign(height);
        const radius = Math.min(RADIUS, Math.abs(height / 2), Math.abs(width / 2));

        context.beginPath();
        context.moveTo(points[0].x, points[0].y);
        context.lineTo(points[0].x + width / 2 - RADIUS, points[0].y);
        context.quadraticCurveTo(
          points[0].x + width / 2,
          points[0].y,
          points[0].x + width / 2,
          points[0].y + dir * radius
        );
        context.lineTo(points[0].x + width / 2, points[1].y - dir * radius);
        context.quadraticCurveTo(
          points[0].x + width / 2,
          points[1].y,
          points[0].x + width / 2 + radius,
          points[1].y
        );
        context.lineTo(points[1].x, points[1].y);
        context.fillStrokeShape(shape);
      }}
      stroke="black"
      strokeWidth={2}
    />
  );
};

演示:https ://codesandbox.io/s/757nw05p6

于 2019-05-15T00:19:43.840 回答