当前位置:   article > 正文

vue中,使用css实现多行文本【展开收起】功能_vue长文本展开与收起

vue长文本展开与收起

vue中,使用css实现多行文本【展开收起】功能

先看看效果:
在这里插入图片描述
1.父组件

<template>
  <div>
    <ul class="ul_list">
      <li ref="descRef" v-for="item in list" :key="item.id">
        <ListItem :listData="item"></ListItem>
      </li>
    </ul>
  </div>
</template>
<script>
import ListItem from "./module/ListItem";  
export default {
  name: "ParentPage",
  components: { ListItem },
  data() {
    return {
      list: [
        {
          id: "0",
          desc: "123123,456,123123,456,123123,456,123123,456,123123,456,123123,456,",
        },
        {
          id: "1",
          desc: "这是文本内容,这是文本内容",
        },
        {
          id: "2",
          desc: "这是文本内容,这是文本内容,这是文本内容,这是文本内容,这是文本内容,这是文本内容,这是文本内容,这是文本内容,这是文本内容,这是文本内容,这是文本内容,这是文本内容,这是文本内容,这是文本内容,这是文本内容,这是文本内容,这是文本内容,这是文本内容,这是文本内容,这是文本内容,",
        },
      ],
    };
  }
};
</script>
<style scoped lang="scss">
.ul_list {
  width: 200px;
  margin: 50px 200px 0;
  li {
	  list-style: none;
	  border-bottom: 1px solid #ddd;
	  padding: 10px 0;
	  border: 1px solid #eee;
	  border-radius: 8px;
	  margin: 6px 6px 6px 0;
	  background: #eee;
	  padding: 6px;
	  display: flex;
	  overflow: hidden;
  }
}
</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
  1. ListItem 子组件(重点
<template>
  <div ref="listDom" class="item" :class="{ spreadSty: isSpread }">
    <div class="btn" v-if="showBtn" @click="isSpread = !isSpread">
      {{ isSpread ? "收起>" : "展开>" }}
    </div>
    <div class="desc">{{ listData.desc }}</div>
  </div>
</template>
<script>
export default {
  name: "ListItem",
  props: {
    listData: {
      type: Object,
      default: () => {},
    },
  },
  data() {
    return {
      showBtn: false,  //是否显示【展开/收起】按钮
      isSpread: false, 
    };
  },

  watch: {
    "listData.id": {
      immediate: true,
      handler() {
      //判断是否显示【展开/收起】按钮
        this.$nextTick(() => {
          const { clientHeight, scrollHeight } = this.$refs.listDom;
          this.showBtn = scrollHeight > clientHeight;
        });
      },
    },
  },
};
</script>
<style scoped lang="scss">
.item {
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 20px;
  .desc {
    word-break: break-all;  /*英文换行*/
  }
  /*重点1 使用伪元素进行浮动*/
  &::before {
    content: "";
    float: right;
    /*动态高度,使用负margin, 性能比calc 好一点*/
    height: 100%;
    margin-top: -20px;
    /*height: calc(100% - 20px);*/
  }
  .btn {
    position: relative;
    /*重点2 按钮设置浮动,并使用clear: both 将按钮移到文本右下角*/
    float: right;
    clear: both;
    font-size: 14px;
    height: 20px;
    line-height: 20px;
    padding: 0 4px;
    background: purple;
    cursor: pointer;
    color: #fff;
    margin-left: 10px;
  }
   /*重点3  展开时的样式*/
  &.spreadSty {
    -webkit-line-clamp: 999;  /*设置一个足够大的行数就可以了*/
  }
}
  • 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

本文借鉴自:CSS 实现多行文本“展开收起”

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

闽ICP备14008679号