canvas 元素上的 HTML 文本字段

发布于 2024-10-21 16:37:43 字数 173 浏览 2 评论 0原文

我一直在画布上摆弄文字,虽然它很容易绘制,但与之交互并不容易。我开始实现键盘按键功能来更新画布上的文本,但当我意识到我必须合并剪切、复制、粘贴和撤消功能时,我放弃了。

有没有办法让html元素“浮动”在彼此之上?例如,我可以将文本字段浮动在画布的某些部分之上,禁用边框并将颜色设置为画布颜色吗?

谢谢

I have been playing around with text in the canvas, and although it is easy to draw, it is not easy to interact with. I began implementing keyboard press functionality to update text on the canvas, but then gave up when I realized I would have to incorporate cut,copy,past and undo functionality.

Is there anyway to "float" html elements on top of eachother? For example can I float a text field ontop of certain parts of my canvas, disable the border and set the color to the canvas color?

Thank You

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

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

发布评论

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

评论(2

小清晰的声音 2024-10-28 16:37:43

您可以将 CSS position:absolute 属性与 z-index: 1 将元素放置在画布上方。

编辑:添加了一个示例:这里包含“1234”的 div 浮动在包含“abcd”的 div 顶部(可以用 canvas 元素替换)

<div id="wrapper">
    <div style="position: absolute; left: 10px; top: 10px; width:200px; height:100px; background-color: yellow;">
        abcd
    </div>
    <div style="position: absolute; z-index: 1; left: 50px; top: 20px; width:100px; height:20px; background-color: green;">
        1234
    </div>
</div>

You may use the CSS position: absolute property with z-index: 1 to place elements above the canvas.

EDIT: added an example: here the div that contains "1234" floats on top of the div that contains "abcd" (that could be replaced with a canvas element)

<div id="wrapper">
    <div style="position: absolute; left: 10px; top: 10px; width:200px; height:100px; background-color: yellow;">
        abcd
    </div>
    <div style="position: absolute; z-index: 1; left: 50px; top: 20px; width:100px; height:20px; background-color: green;">
        1234
    </div>
</div>
别再吹冷风 2024-10-28 16:37:43

您可以使用“某种方式”不可见的文本控件来控制正在输入的文本,并在按键时在画布上复制innerHTML。我正在做类似的事情,复制 DOM 中存在的文本的计算字体 css 属性等。 Z 索引的工作原理非常简单。 setFocus() 函数也可以提供帮助。

You can use 'somehow' invisible text-control to gain control over the text being input and copy innerHTML on the canvas on keypress. Im doing similar stuff, copying computed font css attributes of the text present in DOM and more. Z-indexes work pretty straight. The setFocus() function can help too.

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