vue3实现自动滚动列表

本文详细描述了如何使用Vue3从头实现一个自动滚动的列表,包括HTML结构、JavaScript逻辑以及注意事项。作者还提到使用React滚动列表的经验,并对比了与Vue3-seamless-scroll插件的差异。
摘要由CSDN通过智能技术生成

记录用vue3实现了一个自动滚动的列表,先上图图

1.用处:

用于实现有表头跟表内容的自动滚动列表

2.实现原理:

创建一个dom为ul,赋值为当前列表数据,然后拷贝这个dom赋值给第二个ul,然后判断屏幕高度跟滚动高度对比,利用requestAnimationFrame动画实现滚动

3.注意事项:

这是基于react的滚动列表改造过来的,所以本身留了render口子,可以自定义表内的内容,不只是文字,但是对于vue3跟jsx的结合,我还是不是很熟,所以目前还没有用到render写法

4.对比:

最开始实现我是想用vue3-seamless-scroll这个插件的,但是使用起来发现,首先它不支持数据少的情况下自动停止滚动,需要传入step为0,感觉不是很方便(也可能是我没有很会用这个插件),所以感觉直接写了一个,需要react版本的可以看另一篇:react实现自动滚动列表

html部分

<template>
  <div
    class="scrollContainer"
    :key="currentTime"
    :style="{ height: `${height}px` }"
  >
    <div
      class="scrollHead"
      :style="{
        height: headerHeight + 'px',
      }"
    >
      <div v-for="l in columns" :key="l.key" :style="{ width: `${l.width}px` }">
        {{ l.title }}
      </div>
    </div>
    <ul
      class="scrollBody"
      ref="wrapperDom"
      :style="{ height: `${height - headerHeight}px` }"
    >
      <ul ref="childDom1" @mouseenter="handleEnter" @mouseleave="handleLeave">
        <li
          v-for="(l, i) in dataSource"
          :data-key="rowKey ? l[rowKey] : `list${i}`"
          :key="rowKey ? l[rowKey] : `list${i}`"
          :style="{ height: `${rowHeight}px` }"
        >
          <div
            v-for="(p, c) in columns"
            :key="`p${c}`"
            :style="getStyle(p, l)"
            @click="
              e => {
                e.stopPropagation()
                onCellClick(l, p)
                onRowClick?.(l)
              }
            "
          >
            {{ p?.render?.(i, l, l[p.key]) || l[p.key] }}
          </div>
        </li>
      </ul>
      <ul ref="childDom2"></ul>
    </ul>
  </div>
</template>

 script中

import { onMounted, watch, ref, onBeforeUnmount, computed, nextTick } from 'vue'

interface ViewProps {
  height: number
  dataSource: Record<string, any>[]
  columns: TableColumn[]
  headerHeight?: number
  rowHeight?: number
  onRowClick?: (l: Record<string, any>) => void
  rowKey?: string
  scroll?: boolean
}

export interface TableColumn {
  key: string
  title: string
  width: number
  render?: (index: number, data: Record<string, any>, text: any) => any
  onClick?: (data: Record<string, any>) => void
}

const props = defineProps<ViewProps>()
const { height, columns, rowHeight = 27.5, headerHeight = 36, rowKey } = props

const wrapperDom = ref<any>()
const childDom1 = ref<any>()
const childDom2 = ref<any>()
const currentTime = ref(new Date().getTime())
let count = 0
let reqAnimation: number

onMounted(() => {
  nextTick(() => {
    reqAnimation = window.requestAnimationFrame(taskStart)
  })
})
onBeforeUnmount(() => {
  handleEnter()
})
const dataSource = computed(() => {
  console.log('dataSource', dataSource)
  return props.dataSource
})
watch(
  () => props.dataSource,
  () => {
    currentTime.value = new Date().getTime()
  }
)

const getStyle = (p, l) => {
  let pStyle = { width: `${p.width}px` }
  if (l.lineColor) {
    pStyle['color'] = l.lineColor
  }
  return pStyle
}

const taskStart = () => {
  if (
    childDom1.value?.clientHeight >= wrapperDom.value?.clientHeight &&
    childDom2.value?.clientHeight < 10
  ) {
    childDom2.value.innerHTML = childDom1.value.innerHTML
  }
  if (wrapperDom.value?.scrollTop >= childDom1.value?.scrollHeight) {
    wrapperDom.value.scrollTop = 0
    count = 0
  } else {
    count += 1
    wrapperDom.value.scrollTop = count
  }
  if (props.scroll) {
    reqAnimation = window.requestAnimationFrame(taskStart)
  }
}

const handleEnter = () => {
  window.cancelAnimationFrame(reqAnimation)
}
const handleLeave = () => {
  reqAnimation = window.requestAnimationFrame(taskStart)
}
const onCellClick = (l: Record<string, any>, p: TableColumn) => {
  p?.onClick?.(l)
}

style中

.scrollContainer {
  width: 100%;

  div {
    text-align: center;
    display: inline-block;
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0;
    opacity: 0.9;
  }

  .scrollHead {
    display: flex;
    align-items: center;
    background-color: rgba(33, 60, 93, 0.55);

    div {
      font-size: 14px;
      font-stretch: normal;
      letter-spacing: 0;
      font-family: MicrosoftYaHei, sans-serif;
      font-weight: bold;
      color: #ffffff;
      opacity: 0.47;
    }
  }

  .scrollBody {
    overflow-y: scroll;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;

    ul {
      height: auto;
      padding: 0;
      margin: 0;
    }

    li {
      list-style: none;
      position: relative;
      cursor: pointer;
      display: flex;
      height: 36px;
      color: #fff;
      align-items: center;
    }

    li div {
      line-height: 36px;
      color: #24acef;
      white-space: nowrap; /* 文本不换行 */
      overflow: hidden; /* 溢出部分隐藏 */
      text-overflow: ellipsis; /* 溢出部分用"..."代替 */
    }

    li:hover {
      background: rgba(43, 143, 171, 0.52);
      > div {
        color: #fff;
      }
    }

    &::-webkit-scrollbar {
      display: none;
    }

    li:nth-child(even) {
      background-color: rgba(43, 143, 171, 0.13);
    }

    li:nth-child(even):hover {
      background: rgba(43, 143, 171, 0.52);
      color: #fff;
    }
  }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值