vue 里实现文本超出时点击左右按钮滚动?

简介: vue 里实现文本超出时点击左右按钮滚动?

实现

编写 leftRightSwiperScroll.vue 组件。

<template>
<!-- 文本超出,左右按钮滚动 -->
<div ref="swiperScroll" class="left-right-swiper-scroll-box">
  <!-- 左边按钮 -->
  <div v-show="showLeftIcon" @click="handleLeftClick" class="scroll-icon left-icon">
    <i ></i>
  </div>
  <!-- 中间滚动区域 -->
  <div ref="swiperScrollContent" class="swiper-scroll-content">
    <slot></slot>
  </div>
  <!-- 右边按钮 -->
  <div v-show="showRightIcon" @click="handleRightClick" class="scroll-icon right-icon">
    <i ></i>
  </div>
</div>
</template>
<script>
export default {
  name: 'leftRightSwiperScroll',
  props: {
    swiperList: {
      type: Object,
      default: () => {
        return {};
      }
    }
  },
  data() {
    return {
      showRightIcon: false, // 是否显示右箭头
      swiperScrollWidth: 0, // 盒子的宽度
      swiperScrollContentWidth: 0, // 内容的宽度
      maxClickNum: 0, // 最大点击次数
      lastLeft: 0, // 上次滑动距离
      clickNum: 0, // 点击次数
      childrenList: [] // 传进来的子元素
    }
  },
  computed: {
    showLeftIcon() {
      return this.clickNum > 0
    }
  },
  mounted() {
    // 获取 HTMLCollection 转为 数组
    this.childrenList = [...this.$refs.swiperScrollContent.children];
    console.log('childrenList--->', this.childrenList);            
    console.log('swiperScroll--->', this.$refs.swiperScroll.getBoundingClientRect());
    console.log('swiperScrollContent--->', this.$refs.swiperScrollContent.getBoundingClientRect());
    // 盒子的宽度
    this.swiperScrollWidth = this.$refs.swiperScroll.getBoundingClientRect().width;
    // 内容的宽度
    this.swiperScrollContentWidth = this.$refs.swiperScrollContent.getBoundingClientRect().width;
    // 比较盒子的宽度,跟内容的宽度:判断是否需要展示右边的按钮
    if(this.swiperScrollWidth < this.swiperScrollContentWidth) {
      this.showRightIcon = true;
    }
  },
  methods: {
    // 点击右箭头(左侧滚动)
    handleRightClick() {
      // 如果点击次数小于数组长度-1时,执行左滑动效果。
      if (this.clickNum < this.childrenList.length - 1) {
        // 获取当前元素宽度
        let width = this.childrenList[this.clickNum].getBoundingClientRect().width;
        console.log(this.childrenList[this.clickNum], this.childrenList[this.clickNum].getBoundingClientRect());
        // 获取最后一个元素距离左侧的距离
        let lastItemOffsetLeft = this.childrenList[this.childrenList.length - 1].offsetLeft;
        // 获取最后一个元素宽度
        let lastWidth = this.childrenList[this.childrenList.length - 1].getBoundingClientRect().width;
        console.log('lastItemOffsetLeft-->', lastItemOffsetLeft, this.childrenList[this.childrenList.length - 1].getBoundingClientRect());
        // 获取可视区域宽度
        const lookWidth = this.$refs.swiperScroll.clientWidth;
        console.log('获取可视区域宽度-->lookWidth', lookWidth);
        // 如果最后一个元素距离左侧的距离+自身的宽度大于可视距离,表示最后一个元素没有出现,执行滚动效果
        if (lastItemOffsetLeft + lastWidth > lookWidth) {
          // 滚动距离(元素的magin-left值) = 负的它自己的长度 + 上一次滑动的距离
          this.$refs.swiperScrollContent.style.marginLeft = `${-width + this.lastLeft}px`;
          this.lastLeft = -width + this.lastLeft;
          // 点击次数+1
          this.clickNum++;
          // 记录到最后一个元素出现在可视区域时,点击次数的最大值。用于后面点击左侧箭头时判断右侧箭头的显示
          this.maxClickNum = this.clickNum;
        }
        // 如果最后一个元素距离左侧的距离小于于可视距离,需要隐藏右侧箭头
        let timer = setTimeout(() => {
          // 重新:获取最后一个元素距离左侧的距离
          let lastItemOffsetLeft2 = this.childrenList[this.childrenList.length - 1].offsetLeft;
          console.log('lastItemOffsetLeft2-新的->', lastItemOffsetLeft2);
          if(lastItemOffsetLeft2 + lastWidth <= lookWidth) {
            this.showRightIcon = false;
          }
          clearTimeout(timer);
        }, 200);
      }
    },
    // 点击左箭头(右侧滚动)
    handleLeftClick() {
      // 当点击次数大于0时才触发,这样当点击次数clickNum等于1的到时候,clickNum--等于0.根据计算属性的判断会隐藏掉左箭头
      if (this.clickNum > 0) {
        // 获取当前元素宽度
        let width = this.childrenList[this.clickNum - 1].getBoundingClientRect().width;
        // 公示:滚动距离(元素的magin-left值) = 它自己的长度 + 上一次滑动的距离
        this.$refs.swiperScrollContent.style.marginLeft = `${this.lastLeft + width}px`
        this.lastLeft = width + this.lastLeft;
        // 点击次数-1
        this.clickNum--;
        // 如果点击次数小于最大点击次数,说明最后一个元素已经不在可是区域内了,显示右箭头
        if (this.clickNum < this.maxClickNum) {
          this.showRightIcon = true;
        }
      }
    }
  }
}
</script>
<style lang='scss' scoped>
.left-right-swiper-scroll-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  transition: all 0.3s;
  .scroll-icon {
    position: absolute;
    top: 0;
    width: 70px;
    height: 30px;
    z-index: 9;
    cursor: pointer;
    background-image: linear-gradient(270deg, invalid gradient);
    i {
      position: absolute;
      top: 5px;
      width: 20px;
      height: 20px;
    }
    &.left-icon {
      left: 0;
      background: url("~@/assets/img/img-mask-left.svg") -20px 0 no-repeat;
      i {
        left: 0;
        background: url("~@/assets/img/icon-arrow-left.svg") 0 0 no-repeat;
      }
    }
    &.right-icon {
      right: 0;
      background: url("~@/assets/img/img-mask-right.svg") 0 0 no-repeat;
      i {
        right: 0;
        background: url("~@/assets/img/icon-arrow-right.svg") 0 0 no-repeat;
      }
    }
  }   
  .swiper-scroll-content {
    display: inline-block;
    white-space: nowrap;
    transition: all 0.3s;
  }
}
</style>



使用

接口获取完之后就渲染,isLoading 就为 true。

引用 leftRightSwiperScroll.vue 组件,使用就行

<left-right-swiper-scroll v-if="isLoading">
  <span class="list-btn active">测试数据·0000</span>
  <span class="list-btn">测试数据·1111</span>
  <span class="list-btn">测试数据·2222</span>
  <span class="list-btn">测试数据·3333</span>
  <span class="list-btn">测试数据·4444</span>
  <span class="list-btn">测试数据·5555</span>
  <span class="list-btn">测试数据·6666</span>
  <span class="list-btn">测试数据·7777</span>
  <span class="list-btn">测试数据·8888</span>
  <span class="list-btn">测试数据·9999</span>
</left-right-swiper-scroll>


效果如下

a08ae09cf88a45d5ab46806bd3989e03.png

a08ae09cf88a45d5ab46806bd3989e03.png

47ed282c29124a43913b470612ebf853.png




目录
相关文章
|
8天前
|
JavaScript 前端开发
如何在 Vue 项目中配置 Tree Shaking?
通过以上针对 Webpack 或 Rollup 的配置方法,就可以在 Vue 项目中有效地启用 Tree Shaking,从而优化项目的打包体积,提高项目的性能和加载速度。在实际配置过程中,需要根据项目的具体情况和需求,对配置进行适当的调整和优化。
|
9天前
|
存储 缓存 JavaScript
在 Vue 中使用 computed 和 watch 时,性能问题探讨
本文探讨了在 Vue.js 中使用 computed 计算属性和 watch 监听器时可能遇到的性能问题,并提供了优化建议,帮助开发者提高应用性能。
|
9天前
|
存储 缓存 JavaScript
如何在大型 Vue 应用中有效地管理计算属性和侦听器
在大型 Vue 应用中,合理管理计算属性和侦听器是优化性能和维护性的关键。本文介绍了如何通过模块化、状态管理和避免冗余计算等方法,有效提升应用的响应性和可维护性。
|
8天前
|
JavaScript 前端开发 UED
vue学习第二章
欢迎来到我的博客!我是一名自学了2年半前端的大一学生,熟悉JavaScript与Vue,目前正在向全栈方向发展。如果你从我的博客中有所收获,欢迎关注我,我将持续更新更多优质文章。你的支持是我最大的动力!🎉🎉🎉
|
8天前
|
JavaScript 前端开发 开发者
vue学习第一章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript和Vue的大一学生。自学前端2年半,熟悉JavaScript与Vue,正向全栈方向发展。博客内容涵盖Vue基础、列表展示及计数器案例等,希望能对你有所帮助。关注我,持续更新中!🎉🎉🎉
|
22天前
|
数据采集 监控 JavaScript
在 Vue 项目中使用预渲染技术
【10月更文挑战第23天】在 Vue 项目中使用预渲染技术是提升 SEO 效果的有效途径之一。通过选择合适的预渲染工具,正确配置和运行预渲染操作,结合其他 SEO 策略,可以实现更好的搜索引擎优化效果。同时,需要不断地监控和优化预渲染效果,以适应不断变化的搜索引擎环境和用户需求。
|
9天前
|
存储 缓存 JavaScript
Vue 中 computed 和 watch 的差异
Vue 中的 `computed` 和 `watch` 都用于处理数据变化,但使用场景不同。`computed` 用于计算属性,依赖于其他数据自动更新;`watch` 用于监听数据变化,执行异步或复杂操作。
|
10天前
|
存储 JavaScript 开发者
Vue 组件间通信的最佳实践
本文总结了 Vue.js 中组件间通信的多种方法,包括 props、事件、Vuex 状态管理等,帮助开发者选择最适合项目需求的通信方式,提高开发效率和代码可维护性。
|
10天前
|
存储 JavaScript
Vue 组件间如何通信
Vue组件间通信是指在Vue应用中,不同组件之间传递数据和事件的方法。常用的方式有:props、自定义事件、$emit、$attrs、$refs、provide/inject、Vuex等。掌握这些方法可以实现父子组件、兄弟组件及跨级组件间的高效通信。
|
15天前
|
JavaScript
Vue基础知识总结 4:vue组件化开发
Vue基础知识总结 4:vue组件化开发