vue 메시지 의 빈 틈 없 는 스크롤 효 과 를 실현 하 는 예제 코드

친구 의 프로젝트 에서 하나의 메시지 가 빈 틈 없 이 굴 러 가 는 효 과 를 실현 하려 고 합 니 다.중간 에 작은 bug 를 만 났 습 니 다.각 조 의 메시지 가 굴 러 갔다 가 다시 순환 할 때 두 배 머 무 르 는 시간 간격 문제 가 발생 합 니 다.저 는 하루 동안 연구 한 끝 에 이 1S 의 작은 문 제 를 해결 하 였 습 니 다.
프로젝트 환경 vue-cli,자체 적 으로 해당 하 는'환경 및 경로'를 설정 하 십시오.여기 서 주로 실현 하 는 방법 을 소개 합 니 다.
첫 번 째 단 계 는 템 플 릿 에서 v-for 방법 으로 메시지 목록 을 순환 합 니 다.

<template>

<div id="box">
  <ul id="con1" ref="con1" :class="{anim:animate==true}">
    <li v-for='item in items'>{{item.name}}</li>
  </ul>
</div>
</template>
두 번 째 단 계 는탭 에 메시지 배열 과 구체 적 인 method 방법 을 배치 합 니 다.

<script>

 export default {
data() {
 return {
   animate:false,
   items:[  //消息列表对应的数组
     {name:"马云"},
     {name:"雷军"},
     {name:"王勤"}
   ]
 }
},
created(){
  setInterval(this.scroll,1000) // 在钩子函数中调用我在method 里面写的scroll()方法,注意此处不要忘记加this,我在这个位置掉了好几次坑,都是因为忘记写this。
},
methods: {
  scroll(){
    let con1 = this.$refs.con1;
    con1.style.marginTop='-30px';
    this.animate=!this.animate;
    var that = this; // 在异步函数中会出现this的偏移问题,此处一定要先保存好this的指向
    setTimeout(function(){
        that.items.push(that.items[0]);
        that.items.shift();
        con1.style.marginTop='0px';
        that.animate=!that.animate;  // 这个地方如果不把animate 取反会出现消息回滚的现象,此时把ul 元素的过渡属性取消掉就可以完美实现无缝滚动的效果了
    },500)
  }
}
}
</script>

<style>

*{
  margin: 0 ;
  padding: 0;
}
#box{
  width: 300px;
  height: 32px;
  line-height: 30px;
  overflow: hidden;
  padding-left: 30px;
  border: 1px solid black;
  transition: all 0.5s;
}
.anim{
  transition: all 0.5s;
}
#con1 li{
  list-style: none;
  line-height: 30px;
  height: 30px;
}
</style>

이상 이 이 글 의 전체 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주시 기 바 랍 니 다.

좋은 웹페이지 즐겨찾기