当前位置:   article > 正文

【uni-app】微信小程序如何轻松判断文本溢出显示展开按钮_微信小程序文本超出显示点

微信小程序文本超出显示点

背景:

开始在网上找了很多解决方案都感觉不灵活,要么写死高度来判断,要么用文字字数,要么用两个容器重复渲染同样的文本,一直在想一个简单方便的解决方案。

原理:

原理其实很简单,后来发现只要两个容器:

一个父容器来控制文本溢出显示省略号,让父容器默认overflow:hidden,一个内联子容器来放文本,文本容器的高度>父容器的高度则说明溢出了

文本溢出:

在这里插入图片描述

展开后:

在这里插入图片描述

文本不溢出时:

在这里插入图片描述

完整代码:

<template>
	<view class="content">
		<view>
			<view class='title-box'>
				<label>content:</label>
				<button type='primary' class="mini-btn" size='mini' v-show="isOverflowed" @click="changeOverflowStatus">
					{{isCollapsed?'Collapse &uarr;':'Open &darr;'}}
				</button>
			</view>
			<view class="text-wrapper" :class="{'not-overflow':isCollapsed}">
				<!-- is overflowed -->
				<!-- <text class="text">
					This is a demo to use a button to control whether it shows the whole content text or show part text with the ellipsis, thanks for my efforts, I make it,I make it,I can make it
				</text> -->
				<!-- not overflowed -->
				<text class="text">
					This is a demo
				</text>	
			</view>	
			
			
		</view>				
	</view>
</template>


<script>
	export default {
		data() {
			return {
				isOverflowed: false,
				isCollapsed: false				
			}
		},
		onLoad() {
			let query = uni.createSelectorQuery();
			let textHeight,wrapperHeight;
			
			query.select(".text-wrapper").boundingClientRect(data=>{
				wrapperHeight = data.height;
			});			
			
			query.select(".text").boundingClientRect(data=>{
				textHeight = data.height;
			});
			
			query.exec(res=>{
				if(textHeight > wrapperHeight){
					this.isOverflowed = true;
				}else{
					this.isOverflowed = false;
				}				
			});



		},
		methods: {
			changeOverflowStatus(){
				this.isCollapsed = !this.isCollapsed;
			},			
		}
	}
</script>

<style scoped lang='scss'>
	.content {
		padding: 25rpx;
	}	
	.title-box {
		display: flex;
		.mini-btn {
			margin-left: auto;
			margin-right: 0;
		}
	}
	.text-wrapper {
		font-size: 30rpx;
		margin-top: 30rpx;
		display:-webkit-box;
		-webkit-line-clamp:2;
		-webkit-box-orient:vertical;
		overflow:hidden;
		
		&.not-overflow {
			-webkit-line-clamp: unset;
			overflow: auto;
		}		
	}

</style>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92

项目源代码已上传github仓库:https://github.com/AdelinaPeng/ellipsis-explore.git

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/91742
推荐阅读
相关标签
  

闽ICP备14008679号