当前位置: 首页 > Web前端 > HTML

foreignObjecttagsvgtextwrapping

时间:2023-04-02 14:38:34 HTML

注意ios浏览器和ie不支持foreignObject使用svgtexttag文字换行比较难控制。可以在foreignObject标签里写html,用css控制文字换行。使用前在caniuse中检查是否兼容使用的浏览器基本格式xxxxxx

js动态代码constwidth=200,height=150,html=`123465789`;constNS='http://www.w3.org/2000/svg';constforeignObject=document.createElementNS(NS,'foreignObject');foreignObject.setAttribute('width',width);foreignObject.setAttribute('height',height);foreignObject.innerHTML=`${html}
`;