我有以下简单的html:
<h1><i>This is a test</i> <span class="wysiwyg-color-red">Hello world</span></h1>
我想使用一组基本样式和strokeText html5 画布 API 方法创建一个文本 html 到画布转换器。
获取节点值的“树”和 html html 元素的列表会很有用。
{
"This is a test": ["i", "h1"],
"Hello world": ["span class="wysiwyg-color-red", "h1"]
}
由此我将能够生成适当的画布文本样式。
回答: