我svg里的圆点怎么不能卡在路径上沿path(路径)移动

我是这样写的:
var mypath = anime.path('#path32');
anime({
targets: '#circle0308',
autoplay: true,
translateX: mypath('x'),
translateY: mypath('y'),
//rotate: mypath('angle'),
duration: 6000,
direction:'alternate',// 'normal', 'reverse', 'alternate' 方向:正常、翻转、交替
loop: true,
easing: 'linear'
});
anime({
targets: '#path32',
autoplay: true,
strokeDashoffset: [anime.setDashoffset, 0],
opacity: 1,
duration: 6000,
loop: true,
direction: 'alternate',
easing: 'linear'
});
可是我的圆点没有卡在路径上运动:在这里插入图片描述
请兄弟姐妹们帮帮我,不胜感激。

已解决,是svg参数出了错