动态调整形状大小
是否可以使用 JavaScript 动态调整几何形状的大小?
示例:我有一个矩形和两个字段(长度和高度)。
当用户定义某些度量时,调整其大小。
我想到了 OpenGL、WebGL、SVG、VRML .. 我在想一些无需使用插件即可在浏览器上运行良好的东西。
Is possible resize geometric shapes on the fly using JavaScript?
Example: I have a rectangle and two fields (length and height).
When user define some measure, resize it.
I thought OpenGL, WebGL, SVG, VRML .. I was thinking something that would works well on browsers without use plugins.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
干得好:
明智地使用它:)
提示: 你可以使用
path
来表示随机形状。这是一个供您娱乐的简单示例:http://jsfiddle.net/HeJDJ/
Here you go:
Use it wisely :)
Hint: You can use
path
for random shapes.Here's a simple example for your amusement: http://jsfiddle.net/HeJDJ/
您查看过 Raphael.JS 库吗? SVG 几乎是跨平台的,并且不需要任何插件。它应该适用于您的应用程序。
Did you have a look at the Raphael.JS library? SVG is pretty much cross-platform, and does not need any plugin. It should work for your application.