在RaphaelJS中生成路径或折线

时间:2016-03-07 20:46:17

标签: javascript css svg raphael graphael

我需要帮助我认为非常简单但似乎有点难以实现的东西:

我需要在SVG中绘制折线并将其传递给RaphaelJS以实现类似的效果:StackOverflow

但我似乎无法找到将SVG折线转换为RaphaelJS的方法。

请在此Fiddle

检查我的代码
var p = r.path("M100,100c0,50 100-50 100,0c0,50 -100-50 -100,0z").attr({stroke: "#ddf"}),
pt = p.getPointAtLength(l);
e = r.ellipse(pt.x, pt.y, 4, 4).attr({stroke: "none", fill: "#f00"}),
totLen = p.getTotalLength(),

然后我会在路径中需要类似的东西:

I only need the line in the dark blue

我只需要深蓝色的线条 任何人

0 个答案:

没有答案