javascript - vue如何做新聞列表上下滾動的效果
淡淡烟草味
淡淡烟草味 2017-05-19 10:43:20
0
3
865

#循環播放的

這是data部分

data() {
    return {
      prizeList: [
        { name: 0 },
        { name: 1 },
        { name: 2 },
        { name: 3 },
        { name: 4 }
      ]
    }
  }

這是我目前的程式碼,只能循環切換,沒有動畫效果

setInterval(async () => {
    let first = this.prizeList.splice(0, 1)
    this.prizeList.push(...first)
}
淡淡烟草味
淡淡烟草味

全部回覆(3)
世界只因有你

可以換個思路,使用transition實作

<p class="scroll-wrap">
    <ul class="scroll-content" :style="{ top }">
        <li v-for="item in prizeList">{{item.name}}</li >  
    </ul>
</p>
export default {
  data () {
    return {
      prizeList: [
        { name: 0 },
        { name: 1 },
        { name: 2 },
        { name: 3 },
        { name: 4 }
      ],
      activeIndex: 0
    }
  },

  computed: {
    top() {
      return - this.activeIndex * 50 + 'px';
    }
  },

  mounted() {
    setInterval(_ => {
      if(this.activeIndex < this.prizeList.length) {
        this.activeIndex += 1;
      } else {
        this.activeIndex = 0;
      }
    }, 1000);
  }
};
.scroll-wrap{
  width: 200px;
  height: 50px;
  border: 1px solid blue;
  overflow: hidden;
}

.scroll-content{
  position: relative;
  transition: top 0.5s;

  li{
    line-height: 50px;
    text-align: center;
  }
}

效果

巴扎黑

可以使用transition組件實現的

刘奇
  • vue官方文件

  • 動畫效果庫

使用十分簡單:

import 'animate'

<transition
  name="custom-classes-transition"
  enter-active-class="animated bounceIn" //animate 提供的动画效果
  leave-active-class="animated bounceOutRight"
>
... //要使用动画效果的内容
</transition>
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板