Vue 消息无缝滚动

Posted conglvse

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue 消息无缝滚动相关的知识,希望对你有一定的参考价值。

技术分享图片
vue实现消息向上无缝滚动效果

<ul class="new-list" :class="{anim:animate}" @mouseenter="Stop()" @mouseleave="Up()">
  <li v-for="item in noticeList">
    ...
  </li>
</ul>
<script>
  export default {
    data() {
      return {
        noticeList: [],
        animate:false,
        intNum: undefined,
      }
    },
    created: function () {
      this.getNoticeData();
    },
    methods: {
      getNoticeData() {
        this.$http.get(‘/news/allList‘, {
          params: {
            ‘pageNumber‘: 10,
            ‘currentPage‘: 1
          }
        }).then(res => {
          this.noticeList = res.data.items;
          this.ScrollUp();
        });
      },
      ScrollUp() {
        this.intNum = setInterval(() => {
          this.animate=true;// 向上滚动的时候需要添加css3过渡动画
          setTimeout(()=>{
            this.noticeList.push(this.noticeList[0]);// 将数组的第一个元素添加到数组的
            this.noticeList.shift(); //删除数组的第一个元素
            this.animate=false;
          },500)
        }, 10000);
      },
      //鼠标移上去停止
      Stop() {
        clearInterval(this.intNum);
      },
      Up() {
        this.ScrollUp();
      },
    }
  }
</script>

样式

.new-list{
    line-height: 28px;
    transition: top 0.5s;
}
.anim{
    transition: all 0.5s;
    margin-top: -28px;//高度等于行高
}

以上是关于Vue 消息无缝滚动的主要内容,如果未能解决你的问题,请参考以下文章

vue基于vue-seamless-scroll实现无缝滚动效果

vue 基于vue-seamless-scroll无缝滚动

vue文字间歇无缝向上滚动

vue3 无缝滚动 seamless-scroll

Vue3无缝滚动----vue3-seamless-scroll

vue 无缝滚动插件vue-seamless-scroll的安装与使用