Raphael JS,路径动画

发布于 2024-10-31 20:52:04 字数 518 浏览 4 评论 0原文

我有一个路径:

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}

其中 p1p2 是点,我没有将它们的定义放在这里,因为它们正确返回正确的值这里。

然后我通过以下方式使用参数对路径进行动画处理:

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

enter image description here

What is the reason of this error?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

a√萤火虫的光℡ 2024-11-07 20:52:04

您是否尝试使用animation_param作为除对象之外的字符串?
我认为应该有效。

Did you try use animation_param as string except object?
I think it should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文