在 HTML5 的画布中添加可拖动的文本区域
是否可以在画布标签内添加可拖动且可调整大小的文本区域?
我已经尝试过这个:
<canvas id="canvas2" width="650" height="850">
<div id="draggable" class="ui-widget-content">
<textarea rows="2" cols="20">
Example
</textarea>
</div>
</canvas>
但它没有显示任何内容=S。
我还应该尝试什么?
谢谢。
It is possible to add a draggable and resizable textarea inside a canvas tag?
I already tried this:
<canvas id="canvas2" width="650" height="850">
<div id="draggable" class="ui-widget-content">
<textarea rows="2" cols="20">
Example
</textarea>
</div>
</canvas>
But it doesn't show anything =S.
What else should I try?
Thanx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试通过包含 textarea 和 canvas 来制作纸张类的东西,然后通过更改 z-index 进行切换code>css 元素的一部分。
You can try to make a paper kind of thing by including both textarea and canvas, and then toggling by altering the z-index in the
css
part of the elements.