我有一个<div>
元素,它将显示一个没有换行符的段落,如示例所示
<div>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum
</div>
这里的文本将根据其容器的宽度拆分为若干行,我试图将自动调整大小的每一行 Package 到一个span元素中。但我没有做到这一点,因为我们无法使用\n
找到行的结尾。有什么方法可以实现这一点吗?
注意-我找到一个答案,当我搜索Can I wrap each line of multi-line text in a span?。但问题是不是类似于此,这里我有一个测试在单行,没有换行符。但上述问题有换行符的每一行
2条答案
按热度按时间pkln4tw61#
为了能够计算出什么时候有一个新的行,我们必须首先知道句子的最后一个单词是什么时候。为了找出答案,我们会给每个单词贴上标签。然后我们取每个单词的Y坐标。如果有差异,我们就知道一个新的规则已经开始了。
用于更新https://github.com/nielsreijnders/textSplitter/blob/master/src/index.ts
x一个一个一个一个x一个一个二个一个x一个一个三个一个
当你调整窗口大小的时候你必须更新线条!
toe950272#
这应该能满足你的要求,或者接近于你的要求。
x一个一个一个一个x一个一个二个一个x一个一个三个一个