在项目中有涉及实现一行或者第几行后加省略号,在实现第几行后加省略号的时候,使用的是-webkit-line-clamp、-webkit-box-orient属性,会出现webpack打包-webkit-box-orient属性被忽略的情况,这里记录下
1.单行实现文字省略号
/* 这里要显示的设置宽度 */
overflow: hidden;
white-space: nowrap;
/* 文字超出宽度则显示ellipsis省略号 */
text-overflow: ellipsis;
width: 100%;
2.第几行实现文字省略号
display: -webkit-box;
-webkit-box-orient: vertical; /* 设置方向 */
-webkit-line-clamp: 2; /* 设置超过为省略号的行数 */
overflow: hidden;
- 使用webpack打包工具时,会忽视这个-webkit-box-orient属性,这里修改成下面的写法就可以了
display: -webkit-box;
overflow: hidden;
/*! autoprefixer: off */
-webkit-box-orient: vertical;
/* autoprefixer: on */
-webkit-line-clamp: 8;
text-overflow: ellipsis;
在这个注释里不要忘记加感叹号
3.用js实现字数后加省略号
if (title.length > 26) {
title = title.substring(0, 27) + "...";
}
/* 对文字内容进行长度判断并在长度后添加省略号,试了对富文本也可以操作 */
function sliceWord(content) {
let templateWord = '';
/* 自定义文字内容长度 */
const len = 523;
if (content.length * 2 <= len) {
return content;
}
/* 用于记录文字内容的总长度 */
let strLength = 0;
for (let i = 0; i < content.length; i++) {
templateWord = templateWord + content.charAt(i);
/* charCodeAt()返回指定位置的字符的Unicode编码,值为128以下时一个字符占一位,当值在128以上是一个字符占两位 */
if (content.charCodeAt(i) > 128) {
strLength = strLength + 2;
if (strLength >= len) {
return templateWord.substring(0, templateWord.length - 1) + "...";
}
} else {
strLength = strLength + 1;
if (strLength >= len) {
return templateWord.substring(0, templateWord.length - 2) + "...";
}
}
}
return templateWord;
}
4.用伪元素加js实现省略号
<div id="root">
<div class="content">都市客飞机哦红烧豆腐女神粉贷方金额我日收到货费士大夫撒了空镜头is的回复你打机大法兰克就饿哦是久经风霜砥砺奋进是大佛安慰IE减肥了时代峰峻问饿哦日玩儿都我艾瑞网二十多的撒娇风口浪尖阿谁会</div>
<div class="content">是大佛安慰IE减肥了时代峰峻问饿哦日玩儿都我艾瑞网二十多的撒娇风口浪尖阿谁会</div>
<div class="content">都市客飞机哦红烧豆腐女神粉贷方金额我日收到货费士大夫撒了空镜头is的回复你打机大法兰克就饿哦是久经风霜砥砺奋进是大佛安慰IE减肥了时代峰峻问饿哦日玩儿都我艾瑞网二十多的撒娇风口浪尖阿谁会</div>
<div class="content">兰克就饿哦是久经风霜砥砺奋进是大佛安慰IE减肥了时代峰峻问饿哦日玩儿都我艾瑞网二十多的撒娇风口浪尖阿谁会</div>
<div class="content">都市客飞机哦红烧豆腐女神粉贷方金额我日收到货费士大夫撒了空镜头is的回复你打机大法兰克就饿哦是久经风霜砥砺奋进是大佛安慰IE减肥了时代峰峻问饿哦日玩儿都我艾瑞网二十多的撒娇风口浪尖阿谁会</div>
</div>
#root{
margin: 0 auto;
width: 1200px;
}
.content{
overflow: auto;
position: relative;
margin-bottom: 10px;
width: 500px;
height: 52px;
line-height: 1.5;
}
.hiddenOverflow{
overflow: hidden;
}
.hiddenOverflow::after{
content: '...';
position: absolute;
bottom: 0;
right: 0;
padding-left: 12px;
background: -webkit-linear-gradient(left, transparent, #fff 55%);
background: -o-linear-gradient(right, transparent, #fff 55%);
background: -moz-linear-gradient(right, transparent, #fff 55%);
background: linear-gradient(to right, transparent, #fff 55%);
}
(function() {
const content = document.getElementsByClassName('content');
const length = content.length;
for(let i = 0; i < length; i++) {
/* 利用scrollHeight来判断 */
if(content[i].scrollHeight > content[i].clientHeight) {
content[i].className += ' hiddenOverflow';
}
}
})()
5.换行word-break和word-wrap
- white-space:normal(自动换行),当写入的文字超过定义的宽度后会自动换行,但当写入的数据是一堆没有空格的字符或者字母或者数字时,超过容器的宽度时就会把容器撑大,不换行
- 这时可以用:word-break:break-all;word-wrap:break-word来解决
- word-break:break-all在超过容器宽度时,若有一个单词很长,则会将单词截断,分开写
- word-wrap:break-word在超过容器宽度时,若有一个单词很长,则会将单词放到下一行,而不对单词进行截断
word-break : normal | break-all | keep-all
normal :允许在字内换行
break-all : 允许在单词内换行
keep-all : 只能在半角空格或连字符处换行。
word-wrap : normal | break-word
normal : 允许内容顶开指定的容器边界
break-word : 内容将在边界内换行。如果需要,词内换行(word-break)也会发生
正在努力学习中,若对你的学习有帮助,留下你的印记呗(点个赞咯^_^)
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。