如何在SVG / raphael的贝塞尔曲线末端绘制箭头?

时间:2011-09-23 14:35:54

标签: javascript svg raphael

我有一条由此产生的曲线:

    var path = ["M", x1.toFixed(3), y1.toFixed(3), "L", arrow_left_x, arrow_left_y, "L", arrow_right_x, arrow_right_y, "L", x1.toFixed(3), y1.toFixed(3), "C", x2, y2, x3, y3, x4.toFixed(3), y4.toFixed(3)].join(",");

enter image description here

但我的箭头没有正确完成。
- 它仅指向右侧,并且不指向与贝塞尔曲线末端曲线斜率相同的方向。 - 它没有填写

现在,我知道我在这里没有正确地进行数学计算,但主要是,我只是想知道如何在行尾填充三角形。谢谢!

出于演示目的:

        arrow_left_x = (x1 - 8);
        arrow_left_y = (y1 - 8);
        arrow_right_x = (x1 - 8);
        arrow_right_y = (y1 + 8);

这是获取我使用的坐标的代码。

1 个答案:

答案 0 :(得分:18)

我猜你应该为你的目的使用标记。请参阅example here

修改

您需要在defs部分中创建标记:

var defs = document.createElementNS('http://www.w3.org/2000/svg', 'defs');
var marker = document.createElementNS('http://www.w3.org/2000/svg', 'marker');
marker.setAttribute('id', 'Triangle');
marker.setAttribute('viewBox', '0 0 16 16');
marker.setAttribute('refX', '0');
marker.setAttribute('refY', '6');
marker.setAttribute('markerUnits', 'strokeWidth');
marker.setAttribute('markerWidth', '16');
marker.setAttribute('markerHeight', '12');
marker.setAttribute('orient', 'auto');
var path = document.createElementNS('http://www.w3.org/2000/svg', 'path');
marker.appendChild(path); 
path.setAttribute('d', 'M 0 0 L 16 8 L 0 16 z');   
path.setAttribute('stroke', '#000');   
path.setAttribute('stroke-width', '1'); 
path.setAttribute('style', '  marker-start :none;   marker-end :none; ');      

document.getElementById( id_of_svg_placeholder ).getElementsByTagName('svg')[0].appendChild(defs);
defs.appendChild(marker);

并在CSS中引用它:

path {marker-start:url("#Triangle")}

或作为属性:

<path d="..." marker-start="url(#Triangle)" />

Here's the resulting jsfiddle