如何将车轮项目文本换行到多行?
How can I wrap wheel item text onto multiple lines?
我正在使用 wheelnav.js 库。轮盘中的一些项目有文本,由于长度太长需要换行。
我试过使用
html 标签,但它呈现为文本。
你必须使用\n。
myWheelnav.createWheel(["Short text","This is a\nlong text"]);
我正在使用 wheelnav.js 库。轮盘中的一些项目有文本,由于长度太长需要换行。
我试过使用
html 标签,但它呈现为文本。
你必须使用\n。
myWheelnav.createWheel(["Short text","This is a\nlong text"]);