前言
需求:要求单行显示文字,溢出部分需要显示省略号,但鼠标悬浮时需要显示 tooltip 完整信息。
关键点:文字溢出显示省略号就不说了,主要是如何判断什么时候需要显示 tooltip,什么时候不显示。
思路:如果文字省略时,子元素的宽度势必小于父元素的宽度,则可通过监听鼠标移入事件,判断父子元素的宽度知道文字是否溢出,从而动态控制 tooltip 的显示。
<template>
<el-tooltip
:disabled="isShowTooltip"
:content="text"
placement="top"
effect="light"
>
<div
class="ellipsis"
@mouseover="onMouseOver(refName)"
>
<span :ref="refName">{{ text }}</span>
</div>
</el-tooltip>
</template>
<script>
export default {
data() {
return {
isShowTooltip: true,
}
},
props: {
text: {
type: String,
required: true
},
refName: {
type: String,
required: true
}
},
methods: {
onMouseOver(refName) {
const parentWidth = this.$refs[refName].parentNode.offsetWidth;
const contentWidth = this.$refs[refName].offsetWidth;
// 判断是否开启 tooltip 功能,如果溢出显示省略号,则子元素的宽度势必短于父元素的宽度
if (contentWidth > parentWidth) {
this.isShowTooltip = false;
} else {
this.isShowTooltip = true;
}
}
}
};
</script>
<style lang="less" scoped>
.ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
</style>
原文地址:https://blog.csdn.net/m0_46627730/article/details/129278164
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_30494.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。