Raphael JS,路径动画
我有一个路径:
var original_param = 'M '+p1.x+' '+p1.y+'L '+p2.x+' '+p2.y;
var path = paper.path(original_param);
我为动画定义了另一个路径属性:
var animation_param={M: p11.x+' '+p11.y, L: p22.x+' '+p22.y}
其中 p1
和 p2
是点,我没有将它们的定义放在这里,因为它们正确返回正确的值这里。
然后我通过以下方式使用参数对路径进行动画处理:
path.animate(animation_param, 1000);
但我收到错误消息
此错误的原因是什么?
I have a path:
var original_param = 'M '+p1.x+' '+p1.y+'L '+p2.x+' '+p2.y;
var path = paper.path(original_param);
I have defined another path attribute for animation:
var animation_param={M: p11.x+' '+p11.y, L: p22.x+' '+p22.y}
where p1
and p2
are points, I do not put their definitions here, since they return the proper values correctly here.
Then I animate the path with the parameters by:
path.animate(animation_param, 1000);
But I got error message
What is the reason of this error?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试使用animation_param作为除对象之外的字符串?
我认为应该有效。
Did you try use animation_param as string except object?
I think it should work.