uni-app中,文字超出隐藏并显示省略号(实现展开、收起全文)
uni-app中,固定宽高,文字超出部分,隐藏并显示省略号。.topic_cont_text{padding: 30upx;colof: #999;background: #E1FFFF;max-height: 130upx;overflow: hidden;word-break: break-all;/* break-all(允许在单词内换行。) */...
·
一、uni-app中,固定宽高,文字超出部分,隐藏并显示省略号。
.topic_cont_text{
padding: 30upx;
colof: #999;
background: #E1FFFF;
max-height: 130upx;
overflow: hidden;
word-break: break-all; /* break-all(允许在单词内换行。) */
text-overflow: ellipsis; /* 超出部分省略号 */
display: -webkit-box; /** 对象作为伸缩盒子模型显示 **/
-webkit-box-orient: vertical; /** 设置或检索伸缩盒对象的子元素的排列方式 **/
-webkit-line-clamp: 3; /** 显示的行数 **/
}
二、实现展开、收起全文
<view class="topic_content">
<view class="topic_cont_text">
<template v-if="showText">
{{topicDetail.description}}
<text v-if="topicDetail.description !== null && topicDetail.description.length > 140" class="full_text" @click="toggleDescription">收起</text>
</template>
<template v-else>
{{topicDetail.description.substr(0, 140)}}
<text v-if="topicDetail.description !== null && topicDetail.description.length > 140" class="full_text" @click="toggleDescription">全文</text>
</template>
</view>
</view>
// 全文展开收起
toggleDescription (num) {
this.showText = !this.showText
},
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献1条内容
所有评论(0)