Segment.jsSVG 路径插件
Segment 是一个小的 Javascript 类(没有依赖),它可以绘制动态 SVG 路径。
示例代码:
function cubicIn(t) {    return t * t * t;
}function done() {    alert("Done!");
}
segment.draw("25%", "75% - 10", 1, {delay: 0.5, easing: cubicIn, callback: done}); 
评论
