vue实现图片滚动(类似走马灯效果)可停顿

vue实现图片滚动(类似走马灯效果)

<template>
  <div class="scroll-up" ref="scroll">
    <ul>
      <li v-for="item in scrollData" :key="item.id">
        <p>
          <img :src="item.title" alt="" />
        </p>
      </li>
    </ul>
  </div>
</template>

<script lang="ts">
import { Component, Prop, Vue } from "vue-property-decorator";
import { Action, Mutation, State, Getter } from "vuex-class";
@Component({})
export default class tag extends Vue {
  scrollData: any = [
    {
      id: 1,
      title:
        "https://img0.baidu.com/it/u=4010152342,3338255652&fm=26&fmt=auto&gp=0.jpg",
    },
    {
      id: 2,
      title:
        "https://img0.baidu.com/it/u=2660737697,322287091&fm=26&fmt=auto&gp=0.jpg",
    },
    {
      id: 3,
      title:
        "https://img0.baidu.com/it/u=1914016305,2587323469&fm=26&fmt=auto&gp=0.jpg",
    },
    {
      id: 4,
      title:
        "https://img0.baidu.com/it/u=3212644175,647115577&fm=26&fmt=auto&gp=0.jpg",
    },
    {
      id: 5,
      title:
        "https://img0.baidu.com/it/u=134217195,1637945727&fm=26&fmt=auto&gp=0.jpg",
    },
  ];
  scrollArea: any = "";
  speed: any = 2; //设置播放速度
  timer: any = null;
  delay: any = 1000; //设置停顿时间
  liHeight: any = "";

  startScroll() {
    this.timer = setInterval(this.scrollUp, this.speed);
    this.scrollArea.scrollTop++;
  }
  scrollUp() {
    if (this.scrollArea.scrollTop % this.liHeight == 0) {
      clearInterval(this.timer);
      setTimeout(this.startScroll, this.delay);
    } else {
      this.scrollArea.scrollTop++;
      if (this.scrollArea.scrollTop >= this.scrollArea.scrollHeight / 2) {
        this.scrollArea.scrollTop = 0;
      }
    }
  }
  mounted() {
    setTimeout(() => {
      this.scrollArea = this.$refs.scroll;
      let li = this.scrollArea.getElementsByTagName("li");
      this.liHeight = li[0].offsetHeight;

      this.scrollArea.scrollTop = 0;

      this.scrollArea.innerHTML += this.scrollArea.innerHTML;

      this.scrollData.length > 1 && setTimeout(this.startScroll, this.delay);
    }, 1000);
  }
}
</script>

<style lang='less' scoped>
.scroll-up {
  height: 100px;
  line-height: 100px;
  overflow: hidden;
}
</style>
  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值