使用 RaphaelJS 调整形状大小

发布于 2024-11-15 14:17:03 字数 167 浏览 4 评论 0原文

可以使用 RaphaelJS 吗? 我的意思只是 2D 部分。

我认为的唯一方法是按比例重写所有路径,然后调整它们的大小以适合我的画布容器。

Is it possible using RaphaelJS ?
I mean just 2D part.

The only way I thought is to rewrite all paths proportionally and then resize them to fit inside my canvas container.

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

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

发布评论

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

评论(1

錯遇了你 2024-11-22 14:17:03

是的。
来自 raphael 网站

var c = paper.circle(10, 10, 10);
// makes the circle 1.5 times larger
c.scale(1.5, 1.5);
// makes the circle half as wide, and 75% as high
c.scale(.5, .75);

Yes.
From the raphael site

var c = paper.circle(10, 10, 10);
// makes the circle 1.5 times larger
c.scale(1.5, 1.5);
// makes the circle half as wide, and 75% as high
c.scale(.5, .75);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文