jQuery 和处理在同一个 Canvas 元素中?
是否可以在同一画布元素内同时使用 jQuery 和 处理 内部?
将两者组合在同一页面上很容易,但我想知道是否可以放置 - 例如 - 一些 jQuery UI 可拖动框在画布中呈现一些处理代码。
Is it possible to use both jQuery and Processing inside the same canvas element?
It's easy enough to combine the two on the same page, but I am wondering if it's possible to place - for example - some jQuery UI draggable boxes in a canvas rendering some Processing code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
jQuery UI 与Processing 完全不同,因为它不使用
,而是使用DOM 来创建对话框、可拖动对象等。
所以,不,不可能使用 jQuery UI 在画布上绘图。
jQuery UI is completely different from Processing, as it does not use
<canvas>
, but the DOM to create dialogs, draggables, et cetera.So, no, it is impossible to use jQuery UI to draw on the canvas.