CSS:实现文字溢出显示省略号且悬浮显示tooltip完整信息

组件: element ui中的tooltip组件

思路:通过ref获取宽度进行判断,当子级宽度大于对应标签/父级宽度显示tooltip组件

bash 复制代码
          <div class="bechmark-wrap">
            <ul ref="bechmarkUl">
              <li
                v-for="(item,index) in compositeBenchmarkList"
                :key="item.compositeId"
                :class="{'benchmark-on': nowIndex===index }"
                @click="benchmarkItemClick(index)"
              >
                <el-tooltip placement="top-start" :disabled="isShowTooltip">
                  <div slot="content" class="benchmark-tooltip">{{ item.secName }}</div>
                  <span
                    :ref="'bechmarkItem'+index"
                    @mouseover="onMouseOver('bechmarkItem'+index)"
                  >{{ item.secName }}</span>
                </el-tooltip>
              </li>
            </ul>
          </div>
bash 复制代码
  onMouseOver(refName) {
     // const parentWidth = this.$refs[refName].parentNode.offsetWidth
     const parentWidth = this.$refs['bechmarkUl'].offsetWidth
     const contentWidth = this.$refs[refName][0].offsetWidth
     // 判断是否开启 tooltip 功能,如果溢出显示省略号,则子元素的宽度势必短于父元素的宽度
     //-48是因为bechmarkUl有padding边距
     if (contentWidth > parentWidth - 48) {
       this.isShowTooltip = false
     } else {
       this.isShowTooltip = true
     }
   }


相关推荐
MarcoPage6 分钟前
第十九课 Vue组件中的方法
前端·javascript·vue.js
.net开发8 分钟前
WPF怎么通过RestSharp向后端发请求
前端·c#·.net·wpf
**之火29 分钟前
Web Components 是什么
前端·web components
顾菁寒30 分钟前
WEB第二次作业
前端·css·html
前端宝哥31 分钟前
10 个超赞的开发者工具,助你轻松提升效率
前端·程序员
你好龙卷风!!!33 分钟前
vue3 怎么判断数据列是否包某一列名
前端·javascript·vue.js
兔老大的胡萝卜1 小时前
threejs 数字孪生,制作3d炫酷网页
前端·3d
齐 飞2 小时前
MongoDB笔记02-MongoDB基本常用命令
前端·数据库·笔记·后端·mongodb
巧克力小猫猿3 小时前
基于ant组件库挑选框组件-封装滚动刷新的分页挑选框
前端·javascript·vue.js
FinGet3 小时前
那总结下来,react就是落后了
前端·react.js