我有这种情况:
div { width: 200px }
<div> example example example example example</div>
填满<div>
的整个宽度时,文本会自动跳至下一行。
使用javascript,如何在上一行中显示渲染的内容?
注释:字符串中没有换行符
上述摘要的预期结果:
"example example example"
与第1行相对应,"example example"
与第2行相对应
答案 0 :(得分:2)
尝试CSS
div {
width:200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
答案 1 :(得分:2)
这可以使用CSS完成。不需要Javascript。
<div> example example example example example</div>
<style>
div{
width: 200px;
word-wrap: break-word;
}
</style>
答案 2 :(得分:2)
您可以使用Range API及其方便的getBoundingClientRect()
方法来确定哪个字符标记了TextNode中的癫痫发作。
请注意,每次更改窗口大小/更改布局时,显然都需要重新计算。
function getLineBreaks(node) {
// we only deal with TextNodes
if(!node || !node.parentNode || node.nodeType !== 3)
return [];
// our Range object form which we'll get the characters positions
const range = document.createRange();
// here we'll store all our lines
const lines = [];
// begin at the first char
range.setStart(node, 0);
// initial position
let prevBottom = range.getBoundingClientRect().bottom;
let str = node.textContent;
let current = 1; // we already got index 0
let lastFound = 0;
let bottom = 0;
// iterate over all characters
while(current <= str.length) {
// move our cursor
range.setStart(node, current);
if(current < str.length -1)
range.setEnd(node, current+1);
bottom = range.getBoundingClientRect().bottom;
if(bottom > prevBottom) { // line break
lines.push(
str.substr(lastFound , current - lastFound) // text content
);
prevBottom = bottom;
lastFound = current;
}
current++;
}
// push the last line
lines.push(str.substr(lastFound));
return lines;
}
console.log(getLineBreaks(document.querySelector('.test').childNodes[0]));
div.test {
width: 50px;
margin-bottom: 100px;
word-break: break-all;
}
body>.as-console-wrapper{max-height:100px}
<div class="test">This is some quite long content that will wrap in multiple lines</div>
如果需要每行的相对y位置:
function getLineBreaks(node) {
// we only deal with TextNodes
if(!node || !node.parentNode || node.nodeType !== 3)
return [];
// our Range object form which we'll get the characters positions
const range = document.createRange();
// here we'll store all our lines
const lines = [];
// begin at the first character
range.setStart(node, 0);
// get the position of the parent node so we can have relative positions later
let contTop = node.parentNode.getBoundingClientRect().top;
// initial position
let prevBottom = range.getBoundingClientRect().bottom;
let str = node.textContent;
let current = 1; // we already got index 0
let lastFound = 0;
let bottom = 0;
// iterate over all characters
while(current <= str.length) {
// move our cursor
range.setStart(node, current);
if(current < str.length - 1)
range.setEnd(node, current+1); // wrap it (for Chrome...)
bottom = range.getBoundingClientRect().bottom;
if(bottom > prevBottom) { // line break
lines.push({
y: prevBottom - (contTop || 0), // relative bottom
text: str.substr(lastFound , current - lastFound) // text content
});
prevBottom = bottom;
lastFound = current;
}
current++;
}
// push the last line
lines.push({
y: bottom - (contTop || 0),
text: str.substr(lastFound)
});
return lines;
}
console.log(getLineBreaks(document.querySelector('.test').childNodes[0]));
div.test {
width: 50px;
margin-bottom: 100px;
}
body>.as-console-wrapper{max-height:100px}
<div class="test">This is some quite long content that will wrap in multiple lines</div>