Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用paper.path("M10 10L90 90")函数来绘制几个(!)符号(线,三角形,...)。意味着我只使用一个路径字符串。现在我只想填充这个单一路径中的几个符号之一。所以我不能使用这个.attr("fill", "#123456")功能,因为所有的符号都会被填充。
paper.path("M10 10L90 90")
.attr("fill", "#123456")
有谁知道有可能做到这一点?(除了将路径分成几条路径)
您可以尝试使用一条大路径的子路径:
Element.getSubpath(from, to);
看看这个例子 - http://jsfiddle.net/aStBR/