赞
踩
$refs.名字.$el
获取高度:clientHeight
文本收起高度,scrollHeight
文本全部展示的高度clientHeight
与scrollHeight
进行比较就可以判断文本是否过短showAllQyjs
lines
超过4行时展示【查看更多、收起】按钮placeholder
参数置空 ''
<!-- 文本内容 -->
<view>
<text id="qyjs" :class="{ showAllQyjs: showAll == false, qyjs: true }">{{ info.desc
}}</text>
</view>
<!-- 占位文本 -->
<view>
<text id="placeholder" class="qyjs">{{ placeholder }}</text>
</view>
<!-- 展开收起按钮 -->
<view class="label showAll" @click="showinfo" v-if="lines > 4">
{{ showAll ? '收起' : '查看更多' }}
<uni-icons :type="showAll ? 'top' : 'bottom'" size="12" color="#B1AFB6"></uni-icons>
</view>
showAllQyjs
文本超过4行隐藏样式.showAll { // 展开收缩按钮居中 text-align: center; } .qyjs { display: -webkit-box; //将对象作为弹性伸缩盒子模型显示 } .showAllQyjs { display: -webkit-box; //将对象作为弹性伸缩盒子模型显示 overflow: hidden; //超出部分隐藏 -webkit-line-clamp: 4; //显示几行 text-overflow: ellipsis; //超出部分显示省略号 -webkit-box-orient: vertical; }
data() {
return {
// 企业介绍
showAll: true, //控制展开收起
lineHeight: 0, //单行文本高度
textHeight: 0, //文本高度
placeholder: '占位文本',
info: {
desc: '请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容请填写介绍内容',
// desc: '请填写介绍内容请填写介绍内容请填写介内容请填写介内容请填写介内容范德萨',
},
};
},
methods: { // 获取文本高度 getQyjsHeight() { let that = this; const query = uni.createSelectorQuery().in(this); //获取文本展示高度 query.select('#qyjs').fields({ size: true, }, data => { that.textHeight = data.height; console.log(that.textHeight, "得到节点信息qyjs" + JSON.stringify(data),); }).exec(); //获取单行文本高度 query.select('#placeholder').fields({ size: true, }, data => { that.lineHeight = data.height; console.log(that.lineHeight, "得到节点信息placeholder" + JSON.stringify(data)); }).exec(); //占位文本置空 this.placeholder = ''; //获取高度后收起文本 this.showAll = false }, },
Math.floor()
向下取整,例如8.5 取 8
computed: {
//文本所占总行数
lines() {
let line = Math.floor(this.textHeight > 0 && this.lineHeight > 0 ? this.textHeight / this.lineHeight : 0)
return line
}
},
// 展示隐藏查看更多
showinfo() {
this.showAll = !this.showAll
},
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。