html 格式的文本和画布
我有一堆 html 格式的内容,是 h1、ul 和 p 的组合。 我正在将此内容合并到一个页面中,该页面现在使用画布创建甘特图。
有没有办法将 html 包含在画布中? 由于内容当前以 blob 形式存在,因此提取它并将其放入不同格式的想法有点令人畏惧,并且内容之间几乎没有一致性,这意味着并非每个条目都具有相同的标签和结构。
有什么建议吗?
I've got a bunch of content which is html formatted, a combination of h1, ul, and p.
I'm incorporating this content into a page which now uses canvas to create a gantt chart.
Is there a way to include the html within the canvas?
As the content currently exists as a blob, the thought of extracting it and putting it into a different format is a bit daunting, and there is little consistency across the content, meaning not each entry has all the same tags and structure.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,canvas 元素不擅长绘制文本。您可能应该将 html 格式的文本浮动在画布图表上。
As far as I know, the canvas element isn't great at drawing text. You should probably just float your html formatted text over the canvas chart.