我正在尝试为一些 svg 路径的入口设置动画,但没有运气。这是我到目前为止所拥有的:
这是我的小提琴
$(".line").each(function(i){
var path = $(this);
var totalLength = path.node().getTotalLength();
path.attr("stroke-dasharray", totalLength + " " + totalLength).attr("stroke-dashoffset", totalLength)
.duration(1000).ease("linear").attr("stroke-dashoffset", 0);
});
我收到错误“path.node 不是函数”。我哪里错了?